File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,9 @@ jobs:
125
125
126
126
- name : Deploy instance via Helm template
127
127
run : |
128
- docker_image="${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}/${DOCKER_PACKAGE}:${RELEASE_NAME}"
129
128
release_hostname="${RELEASE_NAME}.${KUBE_HOSTNAME}"
130
129
130
+ echo "Ensuring current context is namespace ${KUBE_NAMESPACE}"
131
131
kubectl config set-context --current --namespace="${KUBE_NAMESPACE}"
132
132
133
133
echo "Listing pods existing before deploy"
@@ -139,7 +139,7 @@ jobs:
139
139
140
140
echo "Extracting projected helm-chart to temporary directory"
141
141
temp_dir=$(mktemp -d)
142
- git archive --format=tar "${{ steps.site -projection.outputs.tree }}" | ( cd "${temp_dir}" && tar -xf - )
142
+ git archive --format=tar "${{ steps.helm -projection.outputs.tree }}" | ( cd "${temp_dir}" && tar -xf - )
143
143
144
144
echo "Using helm upgrade to apply helm-chart to release ${RELEASE_NAME}"
145
145
helm upgrade "${RELEASE_NAME}" "${temp_dir}" \
You can’t perform that action at this time.
0 commit comments