forked from stackhpc/capi-helm-fluxcd-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigmap.yaml
42 lines (35 loc) · 914 Bytes
/
configmap.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
---
apiVersion: v1
kind: ConfigMap
metadata:
name: cluster-example-config
namespace: capi-self
data:
values.yaml: |
# Must match the name of the (sealed) secret in credentials.yaml
cloudCredentialsSecretName: cluster-example-credentials
kubernetesVersion: 1.30.0
machineImageId: "<image id>"
clusterNetworking:
externalNetworkId: "<external net id>"
controlPlane:
machineFlavor: "<flavor id>"
machineCount: 3
nodeGroups:
- name: md-0
machineFlavor: "<flavor id>"
machineCount: 3
addons:
# Use the cilium CNI
cni:
type: cilium
# Enable the monitoring stack
monitoring:
enabled: true
# Disable NFD and the NVIDIA/Mellanox operators
nodeFeatureDiscovery:
enabled: false
nvidiaGPUOperator:
enabled: false
mellanoxNetworkOperator:
enabled: false