#!/usr/bin/env sh # Delete the gitea-config secrets kubectl delete secret gitea-config # Replace it from the local files in kubernetes/custom/config/* (acquired by running # ./script/get_secrets) kubectl create secret generic gitea-config --from-file=cert.pem=kubernetes/custom/config/cert.pem --from-file=key.pem=kubernetes/custom/config/key.pem --from-file=app.ini=kubernetes/custom/config/app.ini # Force the pod to restart by patching the deployment resource kubectl patch deployment gitea-server -p "{\"spec\":{\"template\":{\"metadata\":{\"annotations\":{\"date\":\"`date +'%s'`\"}}}}}"