Skip to content

Commit

Permalink
feat: enable psps by default when possible
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiFleKs committed Aug 5, 2019
1 parent d27eb4a commit d9249f1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion terraform/modules/eks-addons/external-dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ image:
provider: aws
txtPrefix: "ext-dns-"
rbac:
create: true
create: true
pspEnabled: true
nodeSelector:
node-role.kubernetes.io/controller: ""
tolerations:
Expand Down
1 change: 1 addition & 0 deletions terraform/modules/eks-addons/flux.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ image:
tag: ${var.flux["version"]}
rbac:
create: true
pspEnabled: true
helmOperator:
create: true
additionalArgs:
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/eks-addons/kiam.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
locals {
values_kiam = <<VALUES
psp:
create: false
create: true
agent:
image:
tag: ${var.kiam["version"]}
Expand Down
2 changes: 2 additions & 0 deletions terraform/modules/eks-addons/node-problem-detector.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
locals {
values_npd = <<VALUES
rbac:
pspEnabled: true
image:
tag: ${var.npd["version"]}
affinity:
Expand Down
2 changes: 2 additions & 0 deletions terraform/modules/eks-addons/sealed-secrets.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
locals {
values_sealed_secrets = <<VALUES
rbac:
pspEnabled: true
image:
tag: ${var.sealed_secrets["version"]}
VALUES
Expand Down

0 comments on commit d9249f1

Please sign in to comment.