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
#!/bin/bash | |
# Check if $ENV_FILE variable is set | |
if [ -z .env ]; then | |
echo "Error: ENV_FILE variable is not set. Please specify the path to the .env file." | |
exit 1 | |
fi | |
# Check if the .env file exists | |
if [ ! -f .env ]; then | |
echo "Error: The specified .env file .env does not exist." |
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
#!/bin/bash | |
# Define Docker image tag | |
TAG=${DOCKER_REGISTRY}/${REPO_NAME}:${APP_VER:latest} | |
echo $TAG | |
# Enable Docker BuildKit | |
export DOCKER_BUILDKIT=1 | |
# Pull Docker image cache |
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
# -- The notification template is used to generate the notification content | |
## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/templates/ | |
templates: | |
template.app-deployed: | | |
message: | | |
🚀 **{{.app.metadata.name}} : Deployment Successful** | |
Application: **{{.app.metadata.name}}** | |
Repository: **{{.app.spec.source.repoURL}}** | |
Revision: **{{.app.status.sync.revision}}** | |
Status: **Healthy** |
OlderNewer