File tree 4 files changed +37
-1
lines changed
4 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "sarif-viewer.connectToGithubCodeScanning" : " off"
2
+ "sarif-viewer.connectToGithubCodeScanning" : " off" ,
3
+ "workbench.colorCustomizations" : {
4
+ "activityBar.background" : " #5D0D17" ,
5
+ "titleBar.activeBackground" : " #821221" ,
6
+ "titleBar.activeForeground" : " #FEFBFC"
7
+ }
3
8
}
Original file line number Diff line number Diff line change
1
+ apiVersion : v2
2
+ name : waf-multihost
3
+ description : CloudGuard WAF Deployment for multiple hostnames
4
+ version : 0.1.0
5
+ appVersion : " 1.0"
Original file line number Diff line number Diff line change
1
+ {{- range $host := .Values.certificates.hosts }}
2
+ ---
3
+ apiVersion : cert-manager.io/v1
4
+ kind : Certificate
5
+ metadata :
6
+ name : {{ $.Release.Name }}-{{ $host.hostname | replace "." "-" }}
7
+ spec :
8
+ secretName : {{ $.Release.Name }}-{{ $host.hostname | replace "." "-" }}-tls
9
+ dnsNames :
10
+ - {{ $host.hostname }}
11
+ issuerRef :
12
+ name : {{ $.Values.certificates.issuer }}
13
+ kind : ClusterIssuer # or Issuer, depending on your setup
14
+ {{- end }}
Original file line number Diff line number Diff line change
1
+ replicaCount : 1
2
+
3
+ image :
4
+ repository : my-app
5
+ tag : " latest"
6
+
7
+
8
+ certificates :
9
+ issuer : letsencrypt-prod # Your cert-manager issuer
10
+ hosts :
11
+ - hostname : devv1.klaud.online
12
+ - hostname : devv9.klaud.online
You can’t perform that action at this time.
0 commit comments