|
1 | 1 | import ProxyLimitations from "../partials/embedded-cluster/_proxy-install-limitations.mdx" |
2 | 2 | import ProxyRequirements from "../partials/embedded-cluster/_proxy-install-reqs.mdx" |
3 | 3 | import ProxyEnvVars from "../partials/embedded-cluster/_proxy-env-vars.mdx" |
| 4 | +import DeprecatedPrivateCa from "../partials/embedded-cluster/_deprecated-private-ca.mdx" |
4 | 5 |
|
5 | 6 | # Embedded Cluster Install Command Options |
6 | 7 |
|
@@ -126,10 +127,10 @@ sudo ./APP_SLUG install --license PATH_TO_LICENSE [flags] |
126 | 127 | </td> |
127 | 128 | </tr> |
128 | 129 | <tr> |
129 | | - <td>`--private-ca`</td> |
| 130 | + <td>(Deprecated) `--private-ca`</td> |
130 | 131 | <td> |
131 | | - <p>The path to trusted certificate authority (CA) certificates. Using the `--private-ca` flag ensures that the CA is trusted by the installation. KOTS writes the CA certificates provided with the `--private-ca` flag to a ConfigMap in the cluster.</p> |
132 | | - <p>The KOTS [PrivateCACert](/reference/template-functions-static-context#privatecacert) template function returns the ConfigMap containing the private CA certificates supplied with the `--private-ca` flag. You can use this template function to mount the ConfigMap so your containers trust the CA too.</p> |
| 132 | + <DeprecatedPrivateCa/> |
| 133 | + <p>The path to trusted certificate authority (CA) certificates. In Embedded Cluster 2.4.0 and earlier, CAs provided with the `--private-ca` flag are written to a ConfigMap in the cluster that can then be accessed with the [PrivateCACert](/reference/template-functions-static-context#privatecacert) template function.</p> |
133 | 134 | </td> |
134 | 135 | </tr> |
135 | 136 | <tr> |
@@ -182,15 +183,6 @@ Where: |
182 | 183 | * `HOST:PORT` is the host and port of the proxy server |
183 | 184 | * `LIST_OF_HOSTS` is the list of hosts to not proxy. For example, the IP address of the node where you are installing. Or, for multi-node clusters, the list of IP addresses for all nodes in the cluster, typically in CIDR notation. |
184 | 185 |
|
185 | | -### Install Behind an MITM Proxy |
186 | | - |
187 | | -```bash |
188 | | -sudo ./my-app install --license license.yaml --private-ca /path/to/private-ca-bundle \ |
189 | | - --http-proxy=http://10.128.0.0:3300 \ |
190 | | - --https-proxy=http://10.128.0.0:3300 \ |
191 | | - --no-proxy=123.89.46.4,10.96.0.0/16,*.example.com |
192 | | -``` |
193 | | - |
194 | 186 | ### Set Admin Console Password |
195 | 187 |
|
196 | 188 | ```bash |
|
0 commit comments