github.com/verrazzano/verrazzano@v1.7.0/platform-operator/thirdparty/charts/jaegertracing/jaeger-operator/values.yaml (about) 1 # Default values for jaeger-operator. 2 # This is a YAML-formatted file. 3 # Declare variables to be passed into your templates. 4 5 image: 6 repository: jaegertracing/jaeger-operator 7 tag: 1.42.0 8 pullPolicy: IfNotPresent 9 imagePullSecrets: [] 10 11 certs: 12 issuer: 13 create: true 14 name: "" 15 certificate: 16 create: true 17 namespace: "" 18 secretName: "" 19 # Specify the cert-manager issuer kind to use an existing cert-manager 20 # issuer; typically Issuer or ClusterIssuer 21 # This field will be ignored if issuer.create is true 22 issuerKind: Issuer 23 24 webhooks: 25 mutatingWebhook: 26 create: true 27 validatingWebhook: 28 create: true 29 port: 9443 30 service: 31 annotations: {} 32 create: true 33 name: "" 34 35 jaeger: 36 # Specifies whether Jaeger instance should be created 37 create: false 38 # namespace where Jaeger resource should be created default to .Release.Namespace 39 namespace: 40 spec: {} 41 42 rbac: 43 # Specifies whether RBAC resources should be created 44 create: true 45 pspEnabled: false 46 clusterRole: false 47 48 service: 49 type: ClusterIP 50 # Specify a specific node port when type is NodePort 51 # nodePort: 32500 52 # Annotations for service 53 annotations: {} 54 55 serviceAccount: 56 # Specifies whether a ServiceAccount should be created 57 create: true 58 # The name of the ServiceAccount to use. 59 # If not set and create is true, a name is generated using the fullname template 60 name: 61 # Annotations for serviceAccount 62 annotations: {} 63 64 # Specifies extra environment variables passed to the operator: 65 extraEnv: [] 66 # Specifies log-level for the operator: 67 # - name: LOG-LEVEL 68 # value: debug 69 70 serviceExtraLabels: {} 71 # Specifies extra labels for the operator-metric service: 72 # foo: bar 73 74 extraLabels: {} 75 # Specifies extra labels for the operator deployment: 76 # foo: bar 77 78 resources: {} 79 # limits: 80 # cpu: 100m 81 # memory: 128Mi 82 # requests: 83 # cpu: 100m 84 # memory: 128Mi 85 86 nodeSelector: {} 87 88 tolerations: [] 89 90 affinity: {} 91 92 securityContext: {} 93 94 priorityClassName: 95 96 # Specifies weather host network should be used 97 hostNetwork: false 98 99 metricsPort: 8383 100 101 containerSecurityContext: {}