Skip to content

Commit

Permalink
fix(examples): fix typo in k8s example
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed Nov 2, 2023
1 parent d9b0169 commit ea6790c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/k8s-deploy-shared-manifests/README.md
Expand Up @@ -19,7 +19,6 @@ type: kubernetes
name: api
source:
path: ../ # <--- We set the source path of the action to the root so that we can reference the manifest files

spec:
files:
- manifests/deployment.yaml
Expand All @@ -29,6 +28,8 @@ spec:
kind: Deploy
type: kubernetes
name: web
source:
path: ../ # <--- We set the source path of the action to the root so that we can reference the manifest files
spec:
files:
- manifests/deployment.yaml
Expand Down
Expand Up @@ -15,7 +15,7 @@ spec:
app: ${var.appName}
spec:
imagePullSecrets:
- name: ${var.imagePullSecret}
- name: ${var.imagePullSecretName}
containers:
- name: ${var.appName}
image: "${actions.build[var.appName].outputs.deployment-image-id}"
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s-deploy-shared-manifests/project.garden.yml
Expand Up @@ -15,7 +15,7 @@ variables:
environments:
- name: local
variables:
imagePullSecretName: "" # <--- Not needed for local dev
imagePullSecretName: "fake-secret" # <--- Not needed for local dev
baseHostname: local.demo.garden
- name: remote
defaultNamespace: ${var.remoteEnvName}
Expand Down

0 comments on commit ea6790c

Please sign in to comment.