Skip to content

Commit 6faf047

Browse files
Improve sandbox docs (#539)
new image vendoring + tls disable
1 parent be34cd4 commit 6faf047

File tree

1 file changed

+24
-10
lines changed

1 file changed

+24
-10
lines changed

pages/getting-started/advanced-config/sandboxing.md

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -91,19 +91,16 @@ A starter values file for configuring images for your console in the management
9191

9292
```yaml
9393
# configure main console image
94-
image:
95-
repository: your.enterprise.registry/pluralsh/console
96-
tag: 0.8.7 # only if you want to pin a tag (not recommended as it's set by the chart already)
97-
98-
# configure console operator image
99-
controller:
100-
controllerManager:
101-
manager:
102-
image:
103-
repository: your.enterprise.registry/pluralsh/console
94+
global:
95+
registry: your.enterprise.registry
10496
10597
# configure kas image
10698
kas:
99+
agent:
100+
proxy:
101+
image:
102+
repository: your.enteprise.registry/some/nginx
103+
107104
image:
108105
repository: your.enterprise.registry/pluralsh/kas
109106
```
@@ -123,6 +120,23 @@ agentk:
123120

124121
For more advanced configuration, we definitely recommend consulting the charts directly, they're both open source at https://github.com/pluralsh/console and https://github.com/pluralsh/deployment-operator.
125122

123+
## Disable cert-manager based TLS
124+
125+
Our chart defaults to including TLS reconciled by cert-manager, but if you use a cloud-integrated cert management tool like Amazon Certificate Manager, it is unnecessary and could cause double-encryption. Disabling is a simple values override, done with:
126+
127+
```yaml
128+
# main plural ingress
129+
ingress:
130+
tls:
131+
enabled: false
132+
133+
# disable for KAS ingress too
134+
kas:
135+
ingress:
136+
tls:
137+
enabled: false
138+
```
139+
126140
## Configuring Agent Helm Values
127141

128142
Like we said, the main console deployment is pretty easy to configure, but the agents need to be handled specially since they need to be configured in bulk. We provide a number of utilities to make reconfiguration scalable.

0 commit comments

Comments
 (0)