Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(helm): add PodDisruptionBudget support, fixes ServiceMonitor, removed deprecated kube-rbac-proxy closes #280, #258 #281

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 8 additions & 16 deletions charts/dragonfly-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ metadata:
namespace: {{ .Release.Namespace | quote }}
spec:
replicas: {{ .Values.replicaCount }}
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
{{- with .Values.strategy }}
strategy:
{{- toYaml . | nindent 4 }}
{{- end }}
selector:
matchLabels:
{{- include "dragonfly-operator.selectorLabels" . | nindent 6 }}
Expand All @@ -35,27 +40,14 @@ spec:
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- args:
- --secure-listen-address=0.0.0.0:8443
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- --v=0
image: "{{ .Values.rbacProxy.image.repository }}:{{ .Values.rbacProxy.image.tag }}"
imagePullPolicy: {{ .Values.rbacProxy.image.pullPolicy }}
name: kube-rbac-proxy
securityContext:
{{- toYaml .Values.rbacProxy.securityContext | nindent 12 }}
- name: manager
ports:
- containerPort: 8443
- containerPort: {{ .Values.service.port }}
name: https
protocol: TCP
resources:
{{- toYaml .Values.rbacProxy.resources | nindent 12 }}

- name: manager
args:
- --health-probe-bind-address=:8081
- --metrics-bind-address=127.0.0.1:8080
- --metrics-bind-address=:{{ .Values.service.port }}
- --leader-elect
command:
- /manager
Expand Down
25 changes: 25 additions & 0 deletions charts/dragonfly-operator/templates/pdb.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{{- if .Values.pdb.enabled }}
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
name: {{ include "dragonfly-operator.fullname" . }}
namespace: {{ .Release.Namespace | quote }}
labels:
{{- include "dragonfly-operator.labels" . | nindent 4 }}
{{- with .Values.pdb.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.pdb.minAvailable }}
minAvailable: {{ .Values.pdb.minAvailable }}
{{- else if .Values.pdb.maxUnavailable }}
maxUnavailable: {{ .Values.pdb.maxUnavailable }}
{{- else }}
minAvailable: 0
{{- end }}
selector:
matchLabels:
{{- include "dragonfly-operator.selectorLabels" . | nindent 6 }}
control-plane: controller-manager
{{- end }}
6 changes: 3 additions & 3 deletions charts/dragonfly-operator/templates/servicemonitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ metadata:
name: {{ include "dragonfly-operator.fullname" . }}-controller-manager-metrics
spec:
endpoints:
- targetPort: {{ .Values.service.port }}
- port: https
{{- if .Values.serviceMonitor.interval }}
interval: {{ .Values.serviceMonitor.interval }}
{{- end }}
Expand All @@ -23,11 +23,11 @@ spec:
scrapeTimeout: {{ .Values.serviceMonitor.timeout }}
{{- end }}
{{- if .Values.serviceMonitor.relabelings }}
relabelings:
relabelings:
{{- toYaml .Values.serviceMonitor.relabelings | nindent 4 }}
{{- end }}
{{- if .Values.serviceMonitor.metricRelabelings }}
metricRelabelings:
metricRelabelings:
{{- toYaml .Values.serviceMonitor.metricRelabelings | nindent 4 }}
{{- end }}
jobLabel: {{ template "dragonfly-operator.fullname" . }}
Expand Down
37 changes: 16 additions & 21 deletions charts/dragonfly-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,6 @@ service:

terminationGracePeriodSeconds: 10

rbacProxy:
image:
repository: gcr.io/kubebuilder/kube-rbac-proxy
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v0.13.1

resources:
limits:
cpu: 500m
memory: 128Mi
requests:
cpu: 10m
memory: 64Mi

securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL

manager:
image:
repository: docker.dragonflydb.io/dragonflydb/operator
Expand Down Expand Up @@ -152,6 +131,22 @@ serviceMonitor:
# replacement: mydbname
# targetLabel: dbname

# The number of old ReplicaSets to retain to allow rollback.
revisionHistoryLimit: 10

# Strategy for updating the pod.
# strategy:
# rollingUpdate:
# maxUnavailable: 1

pdb:
# When set to true, deploys PodDisruptionBudget for the controller-manager.
enabled: false
minAvailable: 1
# maxUnavailable: 0
# -- Extra annotations to be added to pdb
annotations: {}

grafanaDashboard:
enabled: false
folder: database
Expand Down