Skip to content

Commit

Permalink
Add control plane tolerations to deployments
Browse files Browse the repository at this point in the history
Signed-off-by: Ahree Hong <[email protected]>
  • Loading branch information
ahreehong committed Jun 11, 2024
1 parent e3b3268 commit 3d25f18
Show file tree
Hide file tree
Showing 24 changed files with 165 additions and 15 deletions.
2 changes: 1 addition & 1 deletion tinkerbell/hegel/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.5
version: 0.3.6

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
12 changes: 12 additions & 0 deletions tinkerbell/hegel/templates/_scheduling.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{- define "singleNodeClusterConfig" }}
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
{{- end }}

{{- define "preferWorkerNodes" }}
- weight: {{ .nodeAffinityWeight }}
preference:
matchExpressions:
- key: node-role.kubernetes.io/control-plane
operator: DoesNotExist
{{- end }}
8 changes: 8 additions & 0 deletions tinkerbell/hegel/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,12 @@ spec:
cpu: {{ .Values.resources.requests.cpu }}
memory: {{ .Values.resources.requests.memory }}
serviceAccountName: {{ .Values.name }}
{{- if .Values.singleNodeClusterConfig.controlPlaneTolerationsEnabled }}
tolerations:
{{- include "singleNodeClusterConfig" . | indent 6 }}
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
{{- include "preferWorkerNodes" (dict "nodeAffinityWeight" .Values.singleNodeClusterConfig.nodeAffinityWeight) | indent 10 }}
{{- end }}
{{- end }}
5 changes: 5 additions & 0 deletions tinkerbell/hegel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ nodeSelector: {}
# Trusted proxies defines a list of IP or CIDR ranges that are allowed to set the X-Forwarded-For
# header. This typically requires all Pod CIDRs in the cluster.
trustedProxies: []

# singleNodeClusterConfig to add tolerations for deployments on control plane nodes. This is defaulted to false.
singleNodeClusterConfig:
controlPlaneTolerationsEnabled: false
nodeAffinityWeight: 1
2 changes: 1 addition & 1 deletion tinkerbell/rufio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.9
version: 0.2.10

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
12 changes: 12 additions & 0 deletions tinkerbell/rufio/templates/_scheduling.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{- define "singleNodeClusterConfig" }}
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
{{- end }}

{{- define "preferWorkerNodes" }}
- weight: {{ .nodeAffinityWeight }}
preference:
matchExpressions:
- key: node-role.kubernetes.io/control-plane
operator: DoesNotExist
{{- end }}
8 changes: 8 additions & 0 deletions tinkerbell/rufio/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,12 @@ spec:
memory: {{ .Values.resources.requests.memory }}
serviceAccountName: {{ .Values.serviceAccountName }}
terminationGracePeriodSeconds: 10
{{- if .Values.singleNodeClusterConfig.controlPlaneTolerationsEnabled }}
tolerations:
{{- include "singleNodeClusterConfig" . | indent 6 }}
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
{{- include "preferWorkerNodes" (dict "nodeAffinityWeight" .Values.singleNodeClusterConfig.nodeAffinityWeight) | indent 10 }}
{{- end }}
{{- end }}
6 changes: 5 additions & 1 deletion tinkerbell/rufio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@ rufioLeaderElectionRoleName: rufio-leader-election-role
managerRoleName: rufio-manager-role
rufioLeaderElectionRoleBindingName: rufio-leader-election-rolebinding
managerRoleBindingName: rufio-manager-rolebinding
nodeSelector: {}
nodeSelector: {}
# singleNodeClusterConfig to add tolerations for deployments on control plane nodes. This is defaulted to false.
singleNodeClusterConfig:
controlPlaneTolerationsEnabled: false
nodeAffinityWeight: 1
2 changes: 1 addition & 1 deletion tinkerbell/smee/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.4
version: 0.3.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
12 changes: 12 additions & 0 deletions tinkerbell/smee/templates/_scheduling.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{- define "singleNodeClusterConfig" }}
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
{{- end }}

{{- define "preferWorkerNodes" }}
- weight: {{ .nodeAffinityWeight }}
preference:
matchExpressions:
- key: node-role.kubernetes.io/control-plane
operator: DoesNotExist
{{- end }}
8 changes: 8 additions & 0 deletions tinkerbell/smee/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,12 @@ spec:
{{- if .Values.hostNetwork }}
hostNetwork: true
{{- end }}
{{- if .Values.singleNodeClusterConfig.controlPlaneTolerationsEnabled }}
tolerations:
{{- include "singleNodeClusterConfig" . | indent 6 }}
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
{{- include "preferWorkerNodes" (dict "nodeAffinityWeight" .Values.singleNodeClusterConfig.nodeAffinityWeight) | indent 10 }}
{{- end }}
{{- end }}
5 changes: 5 additions & 0 deletions tinkerbell/smee/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,8 @@ additionalArgs: []
# - name: MY_ENV_VAR
# value: my-value
additionalEnv: []

# singleNodeClusterConfig to add tolerations for deployments on control plane nodes. This is defaulted to false.
singleNodeClusterConfig:
controlPlaneTolerationsEnabled: false
nodeAffinityWeight: 1
12 changes: 6 additions & 6 deletions tinkerbell/stack/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
dependencies:
- name: tink
repository: file://../tink
version: 0.2.4
version: 0.2.5
- name: smee
repository: file://../smee
version: 0.3.4
version: 0.3.5
- name: rufio
repository: file://../rufio
version: 0.2.9
version: 0.2.10
- name: hegel
repository: file://../hegel
version: 0.3.5
digest: sha256:8adf6b3a5dea3c6a5ccb1cd5a32619a6fa9f79d0ac23d8601b95687dd63aac59
generated: "2024-06-04T15:48:10.744939275-06:00"
version: 0.3.6
digest: sha256:5ddb03f83b97f945fafaff989c86da72691f388da0edc33cd85782392273c21b
generated: "2024-06-10T16:59:58.906762-07:00"
8 changes: 4 additions & 4 deletions tinkerbell/stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ appVersion: "0.4.5"

dependencies:
- name: tink
version: "0.2.4"
version: "0.2.5"
repository: "file://../tink"
- name: smee
version: "0.3.4"
version: "0.3.5"
repository: "file://../smee"
- name: rufio
version: "0.2.9"
version: "0.2.10"
repository: "file://../rufio"
- name: hegel
version: "0.3.5"
version: "0.3.6"
repository: "file://../hegel"
12 changes: 12 additions & 0 deletions tinkerbell/stack/templates/_scheduling.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{- define "singleNodeClusterConfig" }}
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
{{- end }}

{{- define "preferWorkerNodes" }}
- weight: {{ .nodeAffinityWeight }}
preference:
matchExpressions:
- key: node-role.kubernetes.io/control-plane
operator: DoesNotExist
{{- end }}
4 changes: 4 additions & 0 deletions tinkerbell/stack/templates/kubevip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ spec:
- NET_RAW
hostNetwork: true
serviceAccountName: {{ .Values.stack.kubevip.name }}
{{- if .Values.stack.singleNodeClusterConfig.controlPlaneTolerationsEnabled }}
tolerations:
{{- include "singleNodeClusterConfig" (dict "nodeAffinityWeight" .Values.stack.singleNodeClusterConfig.nodeAffinityWeight) | indent 6 }}
{{- end }}
---
apiVersion: v1
kind: ServiceAccount
Expand Down
8 changes: 8 additions & 0 deletions tinkerbell/stack/templates/nginx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,14 @@ spec:
securityContext:
privileged: true
{{- end }}
{{- if .Values.stack.singleNodeClusterConfig.controlPlaneTolerationsEnabled }}
tolerations:
{{- include "singleNodeClusterConfig" . | indent 6 }}
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
{{- include "preferWorkerNodes" (dict "nodeAffinityWeight" .Values.stack.singleNodeClusterConfig.nodeAffinityWeight) | indent 10 }}
{{- end }}
{{- if .Values.stack.service.enabled }}
---
apiVersion: v1
Expand Down
4 changes: 4 additions & 0 deletions tinkerbell/stack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ stack:
# interfaceMode determines how we create the interface needed to listen for DHCP broadcast traffic.
# by default macvlan is used. ipvlan is the only other option.
interfaceMode: macvlan
# singleNodeClusterConfig to add tolerations for deployments on control plane nodes. This is defaulted to false.
singleNodeClusterConfig:
controlPlaneTolerationsEnabled: false
nodeAffinityWeight: 1

# -- Overrides
# The values defined here override those in the individual charts. Some of them require tweaking
Expand Down
2 changes: 1 addition & 1 deletion tinkerbell/tink/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.4
version: 0.2.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
12 changes: 12 additions & 0 deletions tinkerbell/tink/templates/tink-controller/_scheduling.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{- define "singleNodeClusterConfig" }}
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
{{- end }}

{{- define "preferWorkerNodes" }}
- weight: {{ .nodeAffinityWeight }}
preference:
matchExpressions:
- key: node-role.kubernetes.io/control-plane
operator: DoesNotExist
{{- end }}
8 changes: 8 additions & 0 deletions tinkerbell/tink/templates/tink-controller/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,12 @@ spec:
cpu: {{ .Values.controller.resources.requests.cpu }}
memory: {{ .Values.controller.resources.requests.memory }}
serviceAccountName: {{ .Values.controller.name }}
{{- if .Values.controller.singleNodeClusterConfig.controlPlaneTolerationsEnabled }}
tolerations:
{{- include "singleNodeClusterConfig" . | indent 6 }}
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
{{- include "preferWorkerNodes" (dict "nodeAffinityWeight" .Values.controller.singleNodeClusterConfig.nodeAffinityWeight) | indent 10 }}
{{- end }}
{{- end }}
12 changes: 12 additions & 0 deletions tinkerbell/tink/templates/tink-server/_scheduling.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{{- define "singleNodeClusterConfig" }}
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
{{- end }}

{{- define "preferWorkerNodes" }}
- weight: {{ .nodeAffinityWeight }}
preference:
matchExpressions:
- key: node-role.kubernetes.io/control-plane
operator: DoesNotExist
{{- end }}
8 changes: 8 additions & 0 deletions tinkerbell/tink/templates/tink-server/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,12 @@ spec:
cpu: {{ .Values.server.resources.requests.cpu }}
memory: {{ .Values.server.resources.requests.memory }}
serviceAccountName: {{ .Values.server.name }}
{{- if .Values.server.singleNodeClusterConfig.controlPlaneTolerationsEnabled }}
tolerations:
{{- include "singleNodeClusterConfig" . | indent 6 }}
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
{{- include "preferWorkerNodes" (dict "nodeAffinityWeight" .Values.server.singleNodeClusterConfig.nodeAffinityWeight) | indent 10 }}
{{- end }}
{{- end }}
8 changes: 8 additions & 0 deletions tinkerbell/tink/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ controller:
tinkLeaderElectionRoleName: tink-leader-election-role
tinkLeaderElectionRoleBindingName: tink-leader-election-rolebinding
nodeSelector: {}
# singleNodeClusterConfig to add tolerations for deployments on control plane nodes. This is defaulted to false.
singleNodeClusterConfig:
controlPlaneTolerationsEnabled: false
weight: 1

server:
deploy: true
Expand All @@ -39,3 +43,7 @@ server:
roleName: tink-server-role
roleBindingName: tink-server-rolebinding
nodeSelector: {}
# singleNodeClusterConfig to add tolerations for deployments on control plane nodes. This is defaulted to false.
singleNodeClusterConfig:
controlPlaneTolerationsEnabled: false
nodeAffinityWeight: 1

0 comments on commit 3d25f18

Please sign in to comment.