forked from honestica/lifen-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
83 lines (68 loc) · 1.8 KB
/
values.yaml
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
---
# An scim-session secret needs to be defined in the same namespace as this chart.
# It has to contain the scimsession key containing the scim session data.
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created
create: true
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
replicaCount: 1
image:
repository: 1password/scim
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: ""
accountDomain: example.com
# Optional session data (scim session file content)
sessionData: "abcdefg"
service:
internalPort: 8080
externalPort: 80
# annotations adds additional annotations
annotations: {}
# podAnnotations adds additional annotations for the SCIM bridge pod
podAnnotations: #{}
prometheus.io/path: "/metrics"
prometheus.io/port: '8080'
prometheus.io/scrape: 'true'
# nodeSelector schedules the SCIM bridge pod onto nodes that have each of the labels you specify.
nodeSelector: {}
# tolerations sets the tolerations for the SCIM bridge pod
tolerations: #[]
- key: "key1"
operator: "Equal"
value: "value1"
effect: "NoSchedule"
ingress: # {}
enabled: true
# Used to create an Ingress record.
hosts:
- scim.example.com
annotations:
kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
tls: []
# Secrets must be manually created in the namespace.
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: #{}
requests:
cpu: 125m
memory: 256M
limits:
cpu: 250m
memory: 512M
livenessProbe: #{}
enabled: true
path: "/ping"
# Dependencies
redis:
enabled: true
usePassword: false
cluster:
enabled: true
slaveCount: 1