Fix incorrect environment variable reference in dployment templates

This commit is contained in:
red 2025-04-08 13:02:50 -04:00
parent 05350c6a3a
commit 7aedfef075
3 changed files with 3 additions and 2 deletions

View file

@ -61,6 +61,7 @@ steps:
- mkdir -p ~/.kube - mkdir -p ~/.kube
- echo $KUBECONFIG_BASE64 | base64 -d > ~/.kube/config - echo $KUBECONFIG_BASE64 | base64 -d > ~/.kube/config
- pwd - pwd
- echo ${CI_COMMIT_SHA}
- kubectl apply -Rf manifests/tor - kubectl apply -Rf manifests/tor
- envsubst < manifests/tor/deployment.yaml.template | kubectl apply -f - - envsubst < manifests/tor/deployment.yaml.template | kubectl apply -f -
privoxy: privoxy:

View file

@ -18,7 +18,7 @@ spec:
- name: registry-credentials - name: registry-credentials
containers: containers:
- name: privoxy - name: privoxy
image: cr.forge.lan/darkdork-dev/privoxy:${CI_COMMIT_HASH} image: cr.forge.lan/darkdork-dev/privoxy:${CI_COMMIT_SHA}
imagePullPolicy: Always imagePullPolicy: Always
ports: ports:
- containerPort: 8118 - containerPort: 8118

View file

@ -18,7 +18,7 @@ spec:
- name: registry-credentials - name: registry-credentials
containers: containers:
- name: tor - name: tor
image: cr.forge.lan/darkdork-dev/tor:${CI_COMMIT_HASH} image: cr.forge.lan/darkdork-dev/tor:${CI_COMMIT_SHA}
imagePullPolicy: Always imagePullPolicy: Always
ports: ports:
- containerPort: 8118 - containerPort: 8118