Created
April 29, 2022 09:32
-
-
Save welshstew/7c9804b7a24af62d68fa4a5db8c4263d to your computer and use it in GitHub Desktop.
service mesh control plane with container resources set
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: maistra.io/v2 | |
kind: ServiceMeshControlPlane | |
metadata: | |
name: myteam-mtls | |
namespace: myteam-istio-system | |
spec: | |
addons: | |
grafana: | |
enabled: false | |
jaeger: | |
install: | |
storage: | |
type: Memory | |
kiali: | |
enabled: false | |
prometheus: | |
enabled: false | |
policy: | |
type: Istiod | |
proxy: | |
runtime: | |
container: | |
resources: | |
requests: | |
cpu: 20m | |
memory: 128Mi | |
limits: | |
cpu: 200m | |
memory: 128Mi | |
runtime: | |
components: | |
pilot: | |
container: | |
resources: | |
requests: | |
cpu: 200m | |
memory: 128Mi | |
limits: | |
cpu: 400m | |
memory: 128Mi | |
prometheus: | |
container: | |
resources: | |
requests: | |
cpu: 200m | |
memory: 128Mi | |
limits: | |
cpu: 400m | |
memory: 128Mi | |
wasmExtensions.cacher: | |
container: | |
resources: | |
requests: | |
cpu: 200m | |
memory: 128Mi | |
limits: | |
cpu: 400m | |
memory: 128Mi | |
security: | |
controlPlane: | |
mtls: true | |
dataPlane: | |
mtls: true | |
telemetry: | |
type: Istiod | |
tracing: | |
type: None | |
sampling: 10000 | |
gateways: | |
egress: | |
enabled: true | |
runtime: | |
container: | |
resources: | |
requests: | |
cpu: 200m | |
memory: 128Mi | |
limits: | |
cpu: 600m | |
memory: 128Mi | |
deployment: | |
autoScaling: | |
enabled: false | |
enabled: true | |
ingress: | |
enabled: true | |
ingress: false | |
runtime: | |
container: | |
resources: | |
requests: | |
cpu: 200m | |
memory: 128Mi | |
limits: | |
cpu: 600m | |
memory: 128Mi | |
deployment: | |
autoScaling: | |
enabled: false | |
openshiftRoute: true | |
version: v2.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment