-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathvalues.yaml
More file actions
130 lines (111 loc) · 4.42 KB
/
values.yaml
File metadata and controls
130 lines (111 loc) · 4.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
91
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
126
127
128
129
130
# Default values for twingate-operator.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# Required: you have to specify `network` and
# - either `apiKey` or `existingAPIKeySecret`
# - either `remoteNetworkId`, `remoteNetworkName` or `existingRemoteNetworkIdSecret`
twingateOperator: {}
# apiKey: "<api key>"
# existingAPIKeySecret:
# name: my-secret
# key: TWINGATE_API_KEY
# network: "<network slug>"
# remoteNetworkId: "<remote network id>"
# existingRemoteNetworkIdSecret:
# name: my-secret
# key: TWINGATE_REMOTE_NETWORK_ID
# remoteNetworkName: "<remote network name>"
# logFormat: "plain|full|json"
# logVerbosity: "quiet|verbose|debug"
# defaultResourceTags:
# tag1: value_for_tag1
# tag2: value_for_tag2
## Restrict operator to monitor resources in specific namespaces. You should either:
## 1. Specify a list of namespaces:
## namespaces: ["foo-dev", "foo-stg"]
## 2. Use globs to match multiple namespaces:
## namespaces: ["*-dev", "*-stg"]
## 3. Use negation to include all namespaces except those excluded:
## namespaces: ["!*-test"]
## 4. Use multiple globs in one pattern:
## namespaces: ["foo-*,!*-test"]
## For more information on using multiple globs, see: https://kopf.readthedocs.io/en/stable/scopes
## Note: Defining glob patterns as a separate array elements is different from defining comma-separated patterns within a single element.
## For example, `namespaces: ["foo-*", "!*-test"]` is not the same as `namespaces: ["foo-*,!*-test"]`
## `namespaces: ["foo-*", "!*-test"]` will evaluate each glob pattern independently and combine the results.
# namespaces: ["default"]
# Twingate Kubernetes Access is currently in beta. Sign up for early access at https://www.twingate.com/product/kubernetes-access.
kubernetes-access-gateway:
enabled: false
# twingate:
# network: "<network slug>"
#
# # Customize the `TwingateResource` to create for operator to sync to Twingate
# resource:
# # Enable/disable automatic Twingate Resource creation
# enabled: true
# extraAnnotations:
# # Resource alias is included in the auto-generated TLS cert
# resource.twingate.com/alias: "myk8s.int"
image:
repository: twingate/kubernetes-operator
# This sets the pull policy for images.
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
# This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
imagePullSecrets: []
# This is to override the chart name.
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
# This is for setting Kubernetes Annotations to a Pod.
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
podAnnotations: {}
# This is for setting Kubernetes Labels to a Pod.
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
podLabels: {}
podSecurityContext:
seccompProfile:
type: RuntimeDefault
securityContext:
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
allowPrivilegeEscalation: false
runAsUser: 1000
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
priorityClassName: ""
# Array with extra environment variables to add to the operator container
# e.g:
# extraEnvVars:
# - name: FOO
# value: "bar"
#
extraEnvVars: []
rbac:
## Create ClusterRoles that extend the existing view, edit and admin ClusterRoles to interact with Twingate's CRDs
## Ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#aggregated-clusterroles
createAggregateClusterRoles: false