Last active
July 11, 2020 01:31
-
-
Save morlay/b96801cd70e0c6a9ab2cf15438a8ec86 to your computer and use it in GitHub Desktop.
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: install.istio.io/v1alpha1 | |
kind: IstioOperator | |
metadata: | |
name: installed-state | |
namespace: istio-system | |
spec: | |
hub: hub-dev.rockontrol.com/istio | |
tag: 1.6.5 | |
addonComponents: | |
grafana: | |
enabled: true | |
k8s: | |
replicaCount: 1 | |
affinity: | |
nodeAffinity: | |
requiredDuringSchedulingIgnoredDuringExecution: | |
nodeSelectorTerms: | |
- matchExpressions: | |
- key: beta.kubernetes.io/arch | |
operator: In | |
values: | |
- arm64 | |
- amd64 | |
kiali: | |
enabled: true | |
k8s: | |
replicaCount: 1 | |
affinity: | |
nodeAffinity: | |
requiredDuringSchedulingIgnoredDuringExecution: | |
nodeSelectorTerms: | |
- matchExpressions: | |
- key: beta.kubernetes.io/arch | |
operator: In | |
values: | |
- arm64 | |
- amd64 | |
tracing: | |
enabled: true | |
k8s: | |
affinity: | |
nodeAffinity: | |
requiredDuringSchedulingIgnoredDuringExecution: | |
nodeSelectorTerms: | |
- matchExpressions: | |
- key: beta.kubernetes.io/arch | |
operator: In | |
values: | |
- arm64 | |
- amd64 | |
components: | |
egressGateways: | |
- enabled: true | |
k8s: | |
affinity: | |
nodeAffinity: | |
requiredDuringSchedulingIgnoredDuringExecution: | |
nodeSelectorTerms: | |
- matchExpressions: | |
- key: beta.kubernetes.io/arch | |
operator: In | |
values: | |
- arm64 | |
- amd64 | |
env: | |
- name: ISTIO_META_ROUTER_MODE | |
value: sni-dnat | |
hpaSpec: | |
maxReplicas: 6 | |
metrics: | |
- resource: | |
name: cpu | |
targetAverageUtilization: 80 | |
type: Resource | |
minReplicas: 1 | |
scaleTargetRef: | |
apiVersion: apps/v1 | |
kind: Deployment | |
name: istio-egressgateway | |
resources: | |
limits: | |
cpu: 2000m | |
memory: 1024Mi | |
requests: | |
cpu: 100m | |
memory: 128Mi | |
service: | |
ports: | |
- name: http2 | |
port: 80 | |
- name: https | |
port: 443 | |
- name: tls | |
port: 15443 | |
targetPort: 15443 | |
strategy: | |
rollingUpdate: | |
maxSurge: 100% | |
maxUnavailable: 25% | |
name: istio-egressgateway | |
ingressGateways: | |
- enabled: true | |
k8s: | |
affinity: | |
nodeAffinity: | |
requiredDuringSchedulingIgnoredDuringExecution: | |
nodeSelectorTerms: | |
- matchExpressions: | |
- key: beta.kubernetes.io/arch | |
operator: In | |
values: | |
- arm64 | |
- amd64 | |
env: | |
- name: ISTIO_META_ROUTER_MODE | |
value: sni-dnat | |
hpaSpec: | |
maxReplicas: 5 | |
metrics: | |
- resource: | |
name: cpu | |
targetAverageUtilization: 80 | |
type: Resource | |
minReplicas: 1 | |
scaleTargetRef: | |
apiVersion: apps/v1 | |
kind: Deployment | |
name: istio-ingressgateway | |
resources: | |
limits: | |
cpu: 2000m | |
memory: 1024Mi | |
requests: | |
cpu: 100m | |
memory: 128Mi | |
service: | |
ports: | |
- name: status-port | |
nodePort: 32758 | |
port: 15021 | |
protocol: TCP | |
targetPort: 15021 | |
- name: http2 | |
nodePort: 30113 | |
port: 80 | |
protocol: TCP | |
targetPort: 8080 | |
- name: https | |
nodePort: 31438 | |
port: 443 | |
protocol: TCP | |
targetPort: 8443 | |
- name: tls | |
nodePort: 31127 | |
port: 15443 | |
protocol: TCP | |
targetPort: 15443 | |
strategy: | |
rollingUpdate: | |
maxSurge: 100% | |
maxUnavailable: 25% | |
name: istio-ingressgateway | |
values: | |
kiali: | |
hub: querycap | |
tag: v1.20.0 | |
tracing: | |
jaeger: | |
hub: docker.io/querycapjaegertracing | |
tag: "latest" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment