-
Notifications
You must be signed in to change notification settings - Fork 89
/
values.yaml
60 lines (56 loc) · 1.34 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
# Default values for samba-dc.
statefulset:
dnsConfig:
# Set this to the fixed IP address of the k8s node where this will run
nameservers: [ 192.168.1.150 ]
env:
domain_action: join
interfaces: lo
netbios_name: samba
realm: workgroup.example.com
tz: UTC
workgroup: WORKGROUP
# TODO: this will join with incorrect hostname until the following
# directive is actually implemented when hostNetwork=true.
# See issue https://github.com/kubernetes/kubernetes/issues/67019
hostname: samba.workgroup.example.com
hostNetwork: true
resources:
limits:
cpu: 500m
memory: 2560Mi
requests:
cpu: 100m
memory: 512Mi
securityContext:
capabilities:
add: ["SYS_ADMIN"]
volumeMounts:
- mountPath: /var/lib/samba
name: var
- mountPath: /run/secrets/samba-admin-password
name: samba-admin-password
subPath: samba-admin-password
volumes:
- name: samba-admin-password
secret:
secretName: samba-admin-password
volumeClaimTemplates:
- metadata:
name: var
spec:
accessModes: [ ReadWriteMany ]
resources:
requests:
storage: 500Mi
image:
repository: instantlinux/samba-dc
pullPolicy: IfNotPresent
# tag: default
nameOverride: ""
fullnameOverride: ""
serviceAccount:
enabled: true
name: example-privileged
autoscaling:
enabled: false