Skip to content

Commit

Permalink
workloads in plural
Browse files Browse the repository at this point in the history
  • Loading branch information
allamand committed Sep 11, 2023
1 parent cd5cd81 commit 5e9247f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/blue-green-upgrade/bootstrap/workloads.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- path: '{{.metadata.annotations.gitops_workloads_path}}/*'
template:
metadata:
name: 'bootstrap-workload-{{.name}}'
name: 'bootstrap-workloads-{{.name}}'
spec:
project: default
sources:
Expand All @@ -34,7 +34,7 @@ spec:
ref: values
path: '{{.metadata.annotations.gitops_workloads_path}}'
helm:
releaseName: 'bootstrap-workload-{{.name}}'
releaseName: 'bootstrap-workloads-{{.name}}'
ignoreMissingValueFiles: true
values: |
"account": "{{.metadata.annotations.aws_account_id}}"
Expand Down
6 changes: 6 additions & 0 deletions examples/blue-green-upgrade/eks-green/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ variable "environment_name" {
default = "eks-blueprint"
}

variable "ingress_type" {
type = string
description = "Type of ingress to uses (alb | nginx | ...). this parameter will be sent to arocd via gitops bridge"
default = "alb"
}

variable "hosted_zone_name" {
type = string
description = "Route53 domain for the cluster."
Expand Down

0 comments on commit 5e9247f

Please sign in to comment.