Last active
March 14, 2024 18:32
-
-
Save rberrelleza/0009003e08705b053e43e640a2c3f35d to your computer and use it in GitHub Desktop.
Check if your deployment is a preview environment or a development environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deploy: | |
- name: is preview environment? | |
command: | | |
# okteto inserts the preview.okteto.com label only on preview environments | |
kubectl get namespace $OKTETO_NAMESPACE -o jsonpath='{.metadata.labels}' | grep -q "preview.okteto.com" | |
exit_code=$? | |
# we add the PREVIEW_ENVIRONMENT variable to the OKTETO_ENV so it can be used in the rest of the deploy commands | |
if [ $exit_code -eq 0 ]; then | |
echo "ENVIRONMENT_TYPE=preview" >> $OKTETO_ENV | |
else | |
echo "ENVIRONMENT_TYPE=development" >> $OKTETO_ENV | |
fi | |
- name: Consume the value | |
command: | |
echo "What am I? You are a ${ENVIRONMENT_TYPE} environment" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment