Skip to content

Commit

Permalink
chore: fixed api groups
Browse files Browse the repository at this point in the history
  • Loading branch information
gagan1510 committed Aug 4, 2021
1 parent a468f88 commit aae672b
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ export class SealedSecretsTemplate extends Construct {
},
rules: [
{
apiGroups: [],
apiGroups: [
'',
],
resourceNames: [
this.name,
'http:' + this.name + ':',
Expand Down Expand Up @@ -230,7 +232,9 @@ export class SealedSecretsTemplate extends Construct {
},
rules: [
{
apiGroups: [],
apiGroups: [
'',
],
resources: [
'secrets',
],
Expand Down Expand Up @@ -269,7 +273,9 @@ export class SealedSecretsTemplate extends Construct {
],
},
{
apiGroups: [],
apiGroups: [
'',
],
resources: [
'secrets',
],
Expand All @@ -281,7 +287,9 @@ export class SealedSecretsTemplate extends Construct {
],
},
{
apiGroups: [],
apiGroups: [
'',
],
resources: [
'events',
],
Expand Down Expand Up @@ -425,6 +433,7 @@ export class SealedSecretsTemplate extends Construct {
maxSurge: '25%',
maxUnavailable: '25%',
},
type: 'RollingUpdate',
};
}
}

0 comments on commit aae672b

Please sign in to comment.