UNCLASSIFIED

values.yaml 6.15 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"
Nick Nellis's avatar
Nick Nellis committed
5
hub: registry1.dso.mil/ironbank/opensource/istio-1.8
Josh Wolf's avatar
Josh Wolf committed
6
# The tag to use for the image
Nick Nellis's avatar
Nick Nellis committed
7
tag: 1.8.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

15 16 17
monitoring:
  enabled: true

Joshua Carnes's avatar
Joshua Carnes committed
18
imagePullSecrets: []
Josh Wolf's avatar
Josh Wolf committed
19

20
gateway:
Joshua Carnes's avatar
Joshua Carnes committed
21
  # Sets the default hosts to match for HTTPS using the tls mode below
22 23 24 25 26 27
  hosts: [] # Defaults to "*.{{ .Values.domain }}"
  # Examples:
  # - *.admin.bigbang.dev
  # - myapp.bigbang.dev

# Sets the default gateway TLS mode for HTTPS
Josh Wolf's avatar
Josh Wolf committed
28 29 30 31
tls:
  credentialName: wildcard-cert
  mode: SIMPLE

Joshua Carnes's avatar
Joshua Carnes committed
32
extraServers: []
Josh Wolf's avatar
Josh Wolf committed
33 34 35 36 37 38 39
# Example below of complete values capable of being set
# NOTE: hosts[] is capable of dynamic templating from the .Values context
#  - port:
#      name: https-other                          # required: must not be equal to "http"
#      protocol: HTTPS
#      number: 443
#    hosts:
40
#      - "*.sub.{{ .Values.hostname | default .Values.domain }}"
Josh Wolf's avatar
Josh Wolf committed
41 42 43 44
#    tls:
#      credentialName: "another-credential"       # required
#      mode: SIMPLE

Nick Nellis's avatar
Nick Nellis committed
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
# 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
79 80 81
ingressGateway:
  minReplicas: 1
  maxReplicas: 5
Nick Nellis's avatar
Nick Nellis committed
82 83 84 85 86
  scaleMetrics:
    - type: Resource
      resource:
        name: cpu
        targetAverageUtilization: 60
87
  resources: {}
Joshua Carnes's avatar
Joshua Carnes committed
88 89 90 91 92 93
  #    limits:
  #      cpu: 1.5
  #      memory: 3Gi
  #    requests:
  #      cpu: 500m
  #      memory: 1Gi
94
  # Only "LoadBalancer" and "NodePort" are allowed
95
  type: LoadBalancer
96

97 98 99 100 101
  labels:
    # These are the default labels tied to the default gateway
    app: istio-ingressgateway
    istio: ingressgateway

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
  ports:
    # NOTE: Below are ripped directly from istio gateway helm chart defaults: https://github.com/istio/istio/blob/master/manifests/charts/gateways/istio-ingress/values.yaml
    ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
    # Note that AWS ELB will by default perform health checks on the first port
    # on this list. Setting this to the health check port will ensure that health
    # checks always work. https://github.com/istio/istio/issues/12503
    - port: 15021
      targetPort: 15021
      name: status-port
      protocol: TCP
    - port: 80
      targetPort: 8080
      name: http2
      protocol: TCP
    - port: 443
      targetPort: 8443
      name: https
      protocol: TCP
    - port: 15012
      targetPort: 15012
      name: tcp-istiod
      protocol: TCP
    # This is the port where sni routing happens
    - port: 15443
      targetPort: 15443
      name: tls
      protocol: TCP

130 131 132 133 134 135 136 137 138
  #  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: {}

Nick Nellis's avatar
Nick Nellis committed
139 140 141
  #  k8s affinity / anti-affinity. https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
  affinity: {}

142 143
  #  k8s toleration https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
  tolerations: []
Josh Wolf's avatar
Josh Wolf committed
144

Joshua Carnes's avatar
Joshua Carnes committed
145
extraIngressGateways: []
Josh Wolf's avatar
Josh Wolf committed
146 147 148 149 150 151 152
# Complete example of an additional ingressgateway defined below
#  - name: private-ingressgateway
#    k8s:
#      hpaSpec:
#        minReplicas: 1
#        maxReplicas: 3
#      serviceAnnotations:
Ronnie Webb's avatar
Ronnie Webb committed
153
#        service.beta.kubernetes.io/aws-load-balancer-internal: "true"
Nick Nellis's avatar
Nick Nellis committed
154 155 156 157 158
#       metrics:
#         - type: Resource
#           resource:
#             name: cpu
#            targetAverageUtilization: 80
159 160 161 162 163 164 165
#      resources:
#        limits:
#          cpu: 1.5
#          memory: 3Gi
#        requests:
#          cpu: 500m
#          memory: 1Gi
166 167
#    labels:
#      app: private-ingressgateway
Josh Wolf's avatar
Josh Wolf committed
168 169 170 171 172 173

kiali:
  enabled: true

  image:
    name: kiali
174
    hub: registry1.dso.mil/ironbank/opensource/kiali
Josh Wolf's avatar
Josh Wolf committed
175 176 177 178 179 180 181
    tag: v1.23.0

  dashboard:
    auth:
      strategy: ""

tracing:
runyontr's avatar
runyontr committed
182 183 184 185
  enabled: false
  address: jaeger-collector.jaeger.svc
  port: 9411
  # how to access tracing for users. Provided as link in kiali
186
  externalAddress: https://tracing.{{ .Values.hostname | default .Values.domain }}
runyontr's avatar
runyontr committed
187 188
  # percent of traces to send to jaeger
  sampling: 10
Josh Wolf's avatar
Josh Wolf committed
189 190
  image:
    name: all-in-one
191
    hub: registry1.dso.mil/ironbank/opensource/jaegertracing
192 193 194 195 196 197 198 199 200
    tag: 1.19.2

sso:
  enabled: false

  namespace: istio-addons-sso
  selector:
    key: protect
    value: keycloak
201 202 203

cni:
  image:
Nick Nellis's avatar
Nick Nellis committed
204
    name: install-cni-1.8
205
    hub: registry1.dso.mil/ironbank/opensource/istio-1.8
Nick Nellis's avatar
Nick Nellis committed
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
    tag: 1.8.4
  #  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: {}
  #  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:
  global: {}

Joshua Carnes's avatar
Joshua Carnes committed
222 223
networkPolicies:
  enabled: false
Micah Nagel's avatar
Micah Nagel committed
224
  controlPlaneCidr: 0.0.0.0/0