Skip to content

Instantly share code, notes, and snippets.

View taufiqpsumarna's full-sized avatar
🏠
Work From Home

Taufiq Permana taufiqpsumarna

🏠
Work From Home
View GitHub Profile
@taufiqpsumarna
taufiqpsumarna / env.sh
Last active September 23, 2024 09:31
Bash script for checking .env file and load it into current shell
#!/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."
@taufiqpsumarna
taufiqpsumarna / docker-build-push.sh
Created September 23, 2024 08:40
Bash script build docker image using Buildkit and Docker image cache speeding up build progress
#!/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
@taufiqpsumarna
taufiqpsumarna / values.yml
Last active January 15, 2025 06:21
ArgoCD mattermost notification templates
# -- 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**