UNCLASSIFIED

values.yaml 6.29 KB
Newer Older
Josh Wolf's avatar
Josh Wolf committed
1 2 3 4
# The istio profile to use
profile: default

# The hub to use for the image (note: the image is built as ".Values.hub/<component>:.Values.tag"
Daneyon Hansen's avatar
Daneyon Hansen committed
5
hub: registry1.dso.mil/ironbank/opensource/istio
Josh Wolf's avatar
Josh Wolf committed
6
# The tag to use for the image
Ronnie Webb's avatar
Ronnie Webb committed
7
tag: 1.10.3
Josh Wolf's avatar
Josh Wolf committed
8

9 10
# The domain to use for the default gateway
domain: bigbang.dev
Josh Wolf's avatar
Josh Wolf committed
11

12 13 14
# Openshift feature switch toggle
openshift: false

Joshua Carnes's avatar
Joshua Carnes committed
15
imagePullSecrets: []
Josh Wolf's avatar
Josh Wolf committed
16

17 18 19 20 21 22 23 24 25 26 27 28 29
monitoring:
  enabled: false

# Ingress gateways
# The following items are automatically set for every ingress gateway:
# - label: "app: {name of ingress gateway}"
ingressGateways:
  istio-ingressgateway:  # This becomes the name
    enabled: true
    # Labels to use for selecting the ingress gateway from the service
    extraLabels: {} # Automatic labels: 'app: {ingress gateway name}' and `istio: ingressgateway`
    k8s: # Set any value from https://istio.io/latest/docs/reference/config/istio.operator.v1alpha1/#KubernetesResourcesSpec
      # hpaSpec:  By default, HPA is set from 1-5 instances with a target average utilization of 80%
Ronnie Webb's avatar
Ronnie Webb committed
30 31
      resources: 
        requests:
Ronnie Webb's avatar
Ronnie Webb committed
32 33
          cpu: 120m
          memory: 128Mi
Ronnie Webb's avatar
Ronnie Webb committed
34
        limits:
Ronnie Webb's avatar
Ronnie Webb committed
35 36
          cpu: 120m
          memory: 128Mi
37 38 39
      service:
        type: "LoadBalancer" # or "NodePort"
        # ports: By default ports 15021 (status), 80, 443, and 15443 (SNI Routing) are setup
Ronnie Webb's avatar
Ronnie Webb committed
40 41 42 43 44
      podAnnotations:   # https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
          sidecar.istio.io/proxyCPULimit: 150m
          sidecar.istio.io/proxyCPU: 150m
          sidecar.istio.io/proxyMemory: 256Mi
          sidecar.istio.io/proxyMemoryLimit: 256Mi
Ronnie Webb's avatar
Ronnie Webb committed
45
      serviceAnnotations: {} # https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
      nodeSelector: {} # https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
      affinity: {} # https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
      tolerations: [] # https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/

  # # Complete example of an additional ingressgateway defined below
  # private-ingressgateway:  # This becomes the name
  #   # Labels to use for selecting the ingress gateway from the service
  #   extraLabels: {} # Automatic labels: 'app: {ingress gateway name}'
  #   k8s: # Set any value from https://istio.io/latest/docs/reference/config/istio.operator.v1alpha1/#KubernetesResourcesSpec
  #     # hpaSpec:  By default, HPA is set from 1-5 instances with a target average utilization of 80%
  #     resources: {}
  #       # requests:
  #       #   cpu: 500m
  #       #   memory: 1Gi
  #       # limits:
  #       #   cpu: 1.5
  #       #   memory: 3Gi
  #     service:
  #       type: "LoadBalancer" # or "NodePort"
  #       # ports: By default ports 15021 (status), 80, 443, and 15443 (SNI Routing) are setup
  #     podAnnotations: {} # https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
  #     serviceAnnotations: {} # https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
  #     nodeSelector: {} # https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
  #     affinity: {} # https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
  #     tolerations: [] # https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/

# See https://istio.io/latest/docs/reference/config/networking/gateway/#Gateway for spec
gateways:
  main: # This becomes the name of the gateway
    selector:
      app: "istio-ingressgateway"
    servers:  # HTTP redirect to HTTPS is automatically added
    - hosts:
      - "*.{{ .Values.domain }}"
      port:
        name: https
        number: 8443
        protocol: HTTPS
      tls:
        credentialName: "wildcard-cert"
        mode: "SIMPLE"
  # # Example of adding additional gateways
  # private:
  #   selector:
  #     app: "private-istio-ingressgateway"
  #   servers:
  #   - hosts:
  #     - "mypackage.{{ .Values.domain }}"
  #     port:
  #       name: http2
  #       number: 8443
  #       protocol: HTTPS
  #     tls:
  #       credentialName: "some-secret"
  #       mode: "SIMPLE"
Josh Wolf's avatar
Josh Wolf committed
101

Nick Nellis's avatar
Nick Nellis committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
# istiod / pilot configuration
istiod:
  replicaCount: 1
  resources:
    requests:
      cpu: 500m
      memory: 2Gi
    limits:
      cpu: 500m
      memory: 2Gi
  hpaSpec:
    maxReplicas: 3
    minReplicas: 1
    metrics:
      - type: Resource
        resource:
          name: cpu
          targetAverageUtilization: 60
  strategy: {}
  #  k8s pod annotations. https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
Ronnie Webb's avatar
Ronnie Webb committed
122
  podAnnotations: {}
Nick Nellis's avatar
Nick Nellis committed
123 124

  #  k8s service annotations. https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
Ronnie Webb's avatar
Ronnie Webb committed
125
  serviceAnnotations: {}
Nick Nellis's avatar
Nick Nellis committed
126 127 128 129 130 131 132 133 134 135

  #  k8s nodeSelector. https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
  nodeSelector: {}

  #  k8s affinity / anti-affinity. https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
  affinity: {}

  #  k8s toleration https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
  tolerations: []

Josh Wolf's avatar
Josh Wolf committed
136
tracing:
runyontr's avatar
runyontr committed
137 138 139 140 141
  enabled: false
  address: jaeger-collector.jaeger.svc
  port: 9411
  # percent of traces to send to jaeger
  sampling: 10
142 143 144

cni:
  image:
Daneyon Hansen's avatar
Daneyon Hansen committed
145
    name: install-cni
146 147
    hub: registry1.dso.mil/ironbank/opensource/istio
    tag: 1.10.3
Nick Nellis's avatar
Nick Nellis committed
148
  #  k8s pod annotations. https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
Ronnie Webb's avatar
Ronnie Webb committed
149
  podAnnotations: {}
Nick Nellis's avatar
Nick Nellis committed
150
  #  k8s nodeSelector. https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
Ronnie Webb's avatar
Ronnie Webb committed
151
  nodeSelector: {}
Ronnie Webb's avatar
Ronnie Webb committed
152

Nick Nellis's avatar
Nick Nellis committed
153 154 155 156 157 158 159 160
  #  k8s affinity / anti-affinity. https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
  affinity: {}
  #  k8s toleration https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
  tolerations: []

# global istiooperator values:
meshConfig: {}

Ronnie Webb's avatar
Ronnie Webb committed
161
values:
Ronnie Webb's avatar
Ronnie Webb committed
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
  global: 
    proxy:
      resources:
        requests:
          cpu: 500m
          memory: 512Mi
        limits:
          cpu: 500m
          memory: 512Mi
    proxy_init:
      resources:
        limits:
          cpu: 500m
          memory: 512Mi
        requests:
          cpu: 500m
          memory: 512Mi
Joshua Carnes's avatar
Joshua Carnes committed
179 180
networkPolicies:
  enabled: false
181
  # See `kubectl cluster-info` and then resolve to IP
Daneyon Hansen's avatar
Daneyon Hansen committed
182
  controlPlaneCidr: 0.0.0.0/0