Skip to content

Commit 3403530

Browse files
committed
fix typos
1 parent 9fa3d67 commit 3403530

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/pr-deployments/certificate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ spec:
1010
kind: ClusterIssuer
1111
dnsNames:
1212
- "${PR_DEPLOYMENT_ACCESS_URL}"
13-
- "*.{$PR_DEPLOYMENT_ACCESS_URL}"
13+
- "*.${PR_DEPLOYMENT_ACCESS_URL}"

.github/pr-deployments/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ coder:
2727
- name: "CODER_ACCESS_URL"
2828
value: "https://${PR_DEPLOYMENT_ACCESS_URL}"
2929
- name: "CODER_WILDCARD_ACCESS_URL"
30-
value: "*.${env.PR_DEPLOYMENT_ACCESS_URL}"
30+
value: "*.${PR_DEPLOYMENT_ACCESS_URL}"
3131
- name: "CODER_EXPERIMENTS"
3232
value: "${EXPERIMENTS}"
3333
- name: CODER_PG_CONNECTION_URL

.github/workflows/pr-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ jobs:
300300
run: |
301301
set -euo pipefail
302302
# Create service account, role, rolebinding and secret
303-
envsubst < ./.github/pr-deployments/rbac.yaml | kubectl -n pr${{ env.PR_NUMBER }} apply -f -
303+
envsubst < ./.github/pr-deployments/rbac.yaml | kubectl apply -f -
304304
305305
# Get the token for the service account
306306
TOKEN=$(kubectl -n pr${{ env.PR_NUMBER }} get secret coder-workspace-token -o jsonpath='{.data.token}' | base64 --decode)

0 commit comments

Comments
 (0)