mirror of https://github.com/istio/istio.io.git
Update for 1.5 profiles (#6547)
* Update for 1.5 profiles * Add 3 new profiles * Update content/en/docs/setup/additional-setup/config-profiles/index.md Co-Authored-By: Rigs Caballero <grca@google.com> * Update content/en/docs/setup/additional-setup/config-profiles/index.md Co-Authored-By: Rigs Caballero <grca@google.com> Co-authored-by: Rigs Caballero <grca@google.com>
This commit is contained in:
parent
c71ba46ef4
commit
9d59a9fdd8
|
@ -30,32 +30,29 @@ your specific needs. The following built-in configuration profiles are currently
|
|||
|
||||
1. **minimal**: the minimal set of components necessary to use Istio's [traffic management](/docs/tasks/traffic-management/) features.
|
||||
|
||||
1. **sds**: similar to the **default** profile, but also enables Istio's [SDS (secret discovery service)](/docs/tasks/security/citadel-config/auth-sds).
|
||||
This profile comes with additional authentication features enabled by default (Strict Mutual TLS).
|
||||
|
||||
1. **remote**: used for configuring remote clusters of a
|
||||
[multicluster mesh](/docs/ops/deployment/deployment-models/#multiple-clusters) with a
|
||||
[shared control plane](/docs/setup/install/multicluster/shared-vpn/) configuration.
|
||||
|
||||
1. **preview**: enables experimental features that lack the stability, performance, and security of features in the default profiles.
|
||||
|
||||
1. **empty**: deploys nothing. This can be useful as a base profile for custom configuration.
|
||||
|
||||
1. **separate**: deploys Istio following the legacy micro-services model. This profile is not recommended because it won't be supported in future releases.
|
||||
|
||||
The components marked as **X** are installed within each profile:
|
||||
|
||||
| | default | demo | minimal | sds | remote
|
||||
| --- | --- | --- | --- | --- | --- |
|
||||
| Core components | | | | | | |
|
||||
| `istio-citadel` | X | X | | X | X |
|
||||
| `istio-egressgateway` | | X | | | |
|
||||
| `istio-galley` | X | X | | X | |
|
||||
| `istio-ingressgateway` | X | X | | X | |
|
||||
| `istio-nodeagent` | | | | X | |
|
||||
| `istio-pilot` | X | X | X | X | |
|
||||
| `istio-policy` | X | X | | X | |
|
||||
| `istio-sidecar-injector` | X | X | | X | X |
|
||||
| `istio-telemetry` | X | X | | X | |
|
||||
| Addons | | | | | | |
|
||||
| `grafana` | | X | | | |
|
||||
| `istio-tracing` | | X | | | |
|
||||
| `kiali` | | X | | | |
|
||||
| `prometheus` | X | X | | X | |
|
||||
| | default | demo | minimal | remote |
|
||||
| --- | --- | --- | --- | --- |
|
||||
| Core components | | | | | |
|
||||
| `istio-egressgateway` | | X | | |
|
||||
| `istio-ingressgateway` | X | X | | |
|
||||
| `istio-pilot` | X | X | X | |
|
||||
| Addons | | | | | |
|
||||
| `grafana` | | X | | |
|
||||
| `istio-tracing` | | X | | |
|
||||
| `kiali` | | X | | |
|
||||
| `prometheus` | X | X | | X |
|
||||
|
||||
To further customize Istio and install addons, you can add one or more `--set <key>=<value>` options in the
|
||||
`istioctl manifest` command that you use when installing Istio.
|
||||
|
|
|
@ -86,12 +86,12 @@ accessible to `istioctl` by using this command:
|
|||
{{< text bash >}}
|
||||
$ istioctl profile list
|
||||
Istio configuration profiles:
|
||||
empty
|
||||
minimal
|
||||
remote
|
||||
separate
|
||||
default
|
||||
demo
|
||||
empty
|
||||
minimal
|
||||
{{< /text >}}
|
||||
|
||||
## Display the configuration of a profile
|
||||
|
|
Loading…
Reference in New Issue