We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c25341b commit da54a75Copy full SHA for da54a75
apiserver.go
@@ -169,7 +169,7 @@ func main() {
169
caCertPool := x509.NewCertPool()
170
caCertPool.AppendCertsFromPEM(caCert)
171
cfg := &tls.Config{
172
- //ClientAuth: tls.RequireAndVerifyClientCert,
+ ClientAuth: tls.RequireAndVerifyClientCert,
173
//specify pgo-apiserver in the CN....then, add ServerName: "pgo-apiserver",
174
ServerName: "pgo-apiserver",
175
InsecureSkipVerify: tlsNoVerify,
deploy/deployment.json
@@ -24,15 +24,6 @@
24
"containerPort": 8443
25
}
26
],
27
- "livenessProbe": {
28
- "httpGet": {
29
- "port": 8443,
30
- "path": "/health",
31
- "scheme": "HTTPS"
32
- },
33
- "initialDelaySeconds": 4,
34
- "periodSeconds": 5
35
36
"env": [
37
{
38
"name": "CRUNCHY_DEBUG",
0 commit comments