UNCLASSIFIED

You need to sign in or sign up before continuing.
values.yaml 5.99 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
olelink's avatar
olelink committed
7
tag: 1.10.4
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 30 31 32 33
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%
      resources: {}
      service:
        type: "LoadBalancer" # or "NodePort"
        # ports: By default ports 15021 (status), 80, 443, and 15443 (SNI Routing) are setup
34
      podAnnotations: {}  # https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
35 36 37 38 39 40 41 42 43 44 45 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
      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/

  # # 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
91

Nick Nellis's avatar
Nick Nellis committed
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
# 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/
  podAnnotations: {}

  #  k8s service annotations. https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
  serviceAnnotations: {}

  #  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
126
tracing:
runyontr's avatar
runyontr committed
127 128 129 130 131
  enabled: false
  address: jaeger-collector.jaeger.svc
  port: 9411
  # percent of traces to send to jaeger
  sampling: 10
132 133 134

cni:
  image:
Daneyon Hansen's avatar
Daneyon Hansen committed
135
    name: install-cni
136
    hub: registry1.dso.mil/ironbank/opensource/istio
olelink's avatar
olelink committed
137
    tag: 1.10.4
Nick Nellis's avatar
Nick Nellis committed
138 139 140 141
  #  k8s pod annotations. https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
  podAnnotations: {}
  #  k8s nodeSelector. https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
  nodeSelector: {}
142

Nick Nellis's avatar
Nick Nellis committed
143 144 145 146 147 148 149 150 151
  #  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: {}

values:
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
  global: 
    proxy:
      resources:
        requests:
          cpu: 100m
          memory: 256Mi
        limits:
          cpu: 100m
          memory: 256Mi
    proxy_init:
      resources:
        limits:
          cpu: 100m
          memory: 256Mi
        requests:
          cpu: 100m
          memory: 256Mi
Joshua Carnes's avatar
Joshua Carnes committed
169 170
networkPolicies:
  enabled: false
171
  # See `kubectl cluster-info` and then resolve to IP
Daneyon Hansen's avatar
Daneyon Hansen committed
172
  controlPlaneCidr: 0.0.0.0/0