a) Follow on steps on commits with GPG with below changes
b) Use
git config --global gpg.program "$(which gpg)"#instead of
git config --global gpg.program gpg2
c) Prior of creating a signed commit
export GPG_TTY=$(tty)
a) Follow on steps on commits with GPG with below changes
b) Use
git config --global gpg.program "$(which gpg)"#instead of
git config --global gpg.program gpg2
c) Prior of creating a signed commit
export GPG_TTY=$(tty)
git checkout develop
git pull
git checkout my_branch
git rebase develop
git pull --rebase
git commit
git push -f # need the -f?
git reset --soft origin/develop
git commit
git push -f
I’ve an existing cluster. To create a cluster on local machine I would recommend using Kind
kubectl create namespace rabbitmq
helm repo add bitnami https://charts.bitnami.com/bitnami
helm install myrmq bitnami/rabbitmq --namespace rabbitmq
RabbitMQ can be accessed within the cluster on port `5672` at `myrmq-rabbitmq.rabbitmq.svc`.
Username : user
Password…
Not able for find springboot jar file when running helm chart for kubernetes pod (deployment) (though the docker container has a copy jar)
use this pattern
command:
- "java"
args:
- "@/opt/foo/ce/conf/stage/java.options"
- "-jar"
- "/opt/foo/ce/ce.jar"
- "--logging.config=/opt/foo/ce/conf/stage/logback.xml"