Skip to content

Commit

Permalink
Fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
mhoshi-vm committed Dec 10, 2024
1 parent 817364f commit dbc658a
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ kind: Certificate
metadata:
name: root-ca-cert
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
isCA: true
---
Expand All @@ -14,6 +16,8 @@ kind: Certificate
metadata:
name: inter-ca-cert
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
caRef:
name: root-ca-cert
Expand All @@ -27,6 +31,8 @@ kind: Secret
metadata:
name: inter-ca-cert
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
type: Opaque
stringData:
crt.pem: #@ data.values.tp.ingress.tls.certificate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ kind: Password
metadata:
name: tp-pass
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 20
digits: 5
Expand All @@ -20,6 +22,8 @@ kind: Password
metadata:
name: redis-pass
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 20
digits: 5
Expand All @@ -35,6 +39,8 @@ kind: Password
metadata:
name: clickhouse-pass
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 20
digits: 5
Expand All @@ -50,6 +56,8 @@ kind: Password
metadata:
name: postgres-pass
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 20
digits: 5
Expand All @@ -65,6 +73,8 @@ kind: Password
metadata:
name: seaweed-access-key
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 20
digits: 5
Expand All @@ -80,6 +90,8 @@ kind: Password
metadata:
name: seaweed-readonly-access-key
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 20
digits: 5
Expand All @@ -95,6 +107,8 @@ kind: Password
metadata:
name: seaweed-secret-key
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 40
digits: 10
Expand All @@ -110,6 +124,8 @@ kind: Password
metadata:
name: seaweed-readonly-secret-key
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 40
digits: 10
Expand All @@ -125,6 +141,8 @@ kind: Password
metadata:
name: organization-id
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 36
secretTemplate:
Expand All @@ -137,6 +155,8 @@ kind: Password
metadata:
name: encryption-key
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 44
secretTemplate:
Expand All @@ -149,6 +169,8 @@ kind: Password
metadata:
name: tp-app-pass
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 20
digits: 5
Expand All @@ -164,6 +186,8 @@ kind: Password
metadata:
name: ensemble-user-service-pass
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"
spec:
length: 20
digits: 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ kind: RSAKey
metadata:
name: rsa-key
namespace: #@ data.values.tp.namespace
---
annotations:
kapp.k14s.io/change-group: "secrettemplate"
---
apiVersion: secretgen.k14s.io/v1alpha1
kind: RSAKey
metadata:
name: jwt-key
namespace: #@ data.values.tp.namespace
namespace: #@ data.values.tp.namespace
annotations:
kapp.k14s.io/change-group: "secrettemplate"

0 comments on commit dbc658a

Please sign in to comment.