Skip to content

Commit

Permalink
Merge pull request #56 from 27149chen/add-disable-switch
Browse files Browse the repository at this point in the history
add disable switch to make controller-manager optional
  • Loading branch information
Iceber authored Aug 21, 2023
2 parents 7d02ad1 + b87a0a8 commit e220315
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/clusterpedia/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: 1.8.0
version: 1.9.0

# 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
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if not .Values.controllerManager.disabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down Expand Up @@ -52,3 +53,4 @@ spec:
{{- if .Values.controllerManager.tolerations }}
tolerations: {{- include "common.tplvalues.render" (dict "value" .Values.controllerManager.tolerations "context" $) | nindent 8 }}
{{- end }}
{{- end }}
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{{- if not .Values.controllerManager.disabled }}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "clusterpedia.controllerManager.fullname" . }}
namespace: {{ .Release.Namespace }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/clusterpedia/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,8 @@ controllerManager:
tolerations: []
## @param featureGate to controller
featureGates: {}
## @param disabled
# disabled: true

## @section PostgreSQL Parameters
##
Expand Down

0 comments on commit e220315

Please sign in to comment.