-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(database): add DragonflyDB operator and cluster resources
- Loading branch information
Showing
8 changed files
with
245 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
kubernetes/talos-flux/apps/database/dragonfly/cluster/cluster.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
# yaml-language-server: $schema=https://kubernetes-schemas.pages.dev/dragonflydb.io/dragonfly_v1alpha1.json | ||
apiVersion: dragonflydb.io/v1alpha1 | ||
kind: Dragonfly | ||
metadata: | ||
name: dragonfly | ||
spec: | ||
image: ghcr.io/dragonflydb/dragonfly:v1.16.1 | ||
replicas: 4 # set to the number of nodes in the cluster | ||
env: | ||
- name: MAX_MEMORY | ||
valueFrom: | ||
resourceFieldRef: | ||
resource: limits.memory | ||
divisor: 1Mi | ||
args: | ||
- --maxmemory=$(MAX_MEMORY)Mi | ||
- --proactor_threads=2 | ||
- --cluster_mode=emulated | ||
- --lock_on_hashtags | ||
resources: | ||
requests: | ||
cpu: 100m | ||
limits: | ||
memory: 512Mi |
7 changes: 7 additions & 0 deletions
7
kubernetes/talos-flux/apps/database/dragonfly/cluster/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
# yaml-language-server: $schema=https://json.schemastore.org/kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- cluster.yaml | ||
- pod-monitor.yaml |
13 changes: 13 additions & 0 deletions
13
kubernetes/talos-flux/apps/database/dragonfly/cluster/pod-monitor.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
# yaml-language-server: $schema=https://kubernetes-schemas.pages.dev/monitoring.coreos.com/podmonitor_v1.json | ||
apiVersion: monitoring.coreos.com/v1 | ||
kind: PodMonitor | ||
metadata: | ||
name: dragonfly | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: dragonfly | ||
podTargetLabels: ["app"] | ||
podMetricsEndpoints: | ||
- port: admin |
48 changes: 48 additions & 0 deletions
48
kubernetes/talos-flux/apps/database/dragonfly/flux-sync.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
# yaml-language-server: $schema=https://kubernetes-schemas.pages.dev/kustomize.toolkit.fluxcd.io/kustomization_v1.json | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: apps-dragonfly-operator | ||
namespace: flux-system | ||
spec: | ||
targetNamespace: database | ||
commonMetadata: | ||
labels: | ||
app.kubernetes.io/name: dragonfly-operator | ||
app.kubernetes.io/instance: dragonfly-operator | ||
app.kubernetes.io/component: dragonfly | ||
path: ./kubernetes/talos-flux/apps/database/dragonfly/operator | ||
prune: true | ||
sourceRef: | ||
kind: GitRepository | ||
name: home-ops | ||
wait: true | ||
interval: 30m | ||
retryInterval: 1m | ||
timeout: 5m | ||
--- | ||
# yaml-language-server: $schema=https://kubernetes-schemas.pages.dev/kustomize.toolkit.fluxcd.io/kustomization_v1.json | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: apps-dragonfly-cluster | ||
namespace: flux-system | ||
spec: | ||
targetNamespace: database | ||
commonMetadata: | ||
labels: | ||
app.kubernetes.io/name: dragonfly-cluster | ||
app.kubernetes.io/instance: dragonfly-cluster | ||
app.kubernetes.io/component: dragonfly | ||
dependsOn: | ||
- name: apps-dragonfly-operator | ||
path: ./kubernetes/talos-flux/apps/database/dragonfly/cluster | ||
prune: true | ||
sourceRef: | ||
kind: GitRepository | ||
name: home-ops | ||
wait: true | ||
interval: 30m | ||
retryInterval: 1m | ||
timeout: 5m |
102 changes: 102 additions & 0 deletions
102
kubernetes/talos-flux/apps/database/dragonfly/operator/helm-release.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
--- | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2beta2.schema.json | ||
apiVersion: helm.toolkit.fluxcd.io/v2beta2 | ||
kind: HelmRelease | ||
metadata: | ||
name: &app dragonfly-operator | ||
spec: | ||
interval: 30m | ||
chart: | ||
spec: | ||
chart: app-template | ||
version: 3.1.0 | ||
sourceRef: | ||
kind: HelmRepository | ||
name: bjw-s-charts | ||
namespace: flux-system | ||
install: | ||
remediation: | ||
retries: 3 | ||
upgrade: | ||
cleanupOnFail: true | ||
remediation: | ||
strategy: rollback | ||
retries: 3 | ||
values: | ||
controllers: | ||
dragonfly-operator: | ||
replicas: 1 | ||
strategy: RollingUpdate | ||
containers: | ||
app: | ||
image: | ||
repository: ghcr.io/dragonflydb/operator | ||
tag: v1.1.2@sha256:f0d76725950095ac65b36252e0042d339d1db9b181b1d068f4b6686ea93055e4 | ||
command: ["/manager"] | ||
args: | ||
- --health-probe-bind-address=:8081 | ||
- --metrics-bind-address=:8080 | ||
probes: | ||
liveness: | ||
enabled: true | ||
custom: true | ||
spec: | ||
httpGet: | ||
path: /healthz | ||
port: &port 8081 | ||
initialDelaySeconds: 15 | ||
periodSeconds: 20 | ||
timeoutSeconds: 1 | ||
failureThreshold: 3 | ||
readiness: | ||
enabled: true | ||
custom: true | ||
spec: | ||
httpGet: | ||
path: /readyz | ||
port: *port | ||
initialDelaySeconds: 5 | ||
periodSeconds: 10 | ||
timeoutSeconds: 1 | ||
failureThreshold: 3 | ||
resources: | ||
requests: | ||
cpu: 10m | ||
limits: | ||
memory: 128Mi | ||
securityContext: | ||
allowPrivilegeEscalation: false | ||
readOnlyRootFilesystem: true | ||
capabilities: { drop: ["ALL"] } | ||
pod: | ||
securityContext: | ||
runAsUser: 65534 | ||
runAsGroup: 65534 | ||
runAsNonRoot: true | ||
topologySpreadConstraints: | ||
- maxSkew: 1 | ||
topologyKey: kubernetes.io/hostname | ||
whenUnsatisfiable: DoNotSchedule | ||
labelSelector: | ||
matchLabels: | ||
app.kubernetes.io/name: *app | ||
service: | ||
app: | ||
controller: *app | ||
ports: | ||
http: | ||
port: *port | ||
metrics: | ||
port: 8080 | ||
serviceMonitor: | ||
app: | ||
serviceName: *app | ||
endpoints: | ||
- port: metrics | ||
scheme: http | ||
path: /metrics | ||
interval: 1m | ||
scrapeTimeout: 10s | ||
serviceAccount: | ||
create: true | ||
name: *app |
9 changes: 9 additions & 0 deletions
9
kubernetes/talos-flux/apps/database/dragonfly/operator/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
# yaml-language-server: $schema=https://json.schemastore.org/kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
# renovate: datasource=github-releases depName=dragonflydb/dragonfly-operator | ||
- https://raw.githubusercontent.com/dragonflydb/dragonfly-operator/v1.1.2/manifests/crd.yaml | ||
- helm-release.yaml | ||
- rbac.yaml |
40 changes: 40 additions & 0 deletions
40
kubernetes/talos-flux/apps/database/dragonfly/operator/rbac.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: dragonfly-operator | ||
rules: | ||
- apiGroups: ["coordination.k8s.io"] | ||
resources: ["leases"] | ||
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] | ||
- apiGroups: [""] | ||
resources: ["events"] | ||
verbs: ["create", "patch"] | ||
- apiGroups: [""] | ||
resources: ["pods", "services"] | ||
verbs: ["create", "delete", "get", "list", "patch", "update", "watch"] | ||
- apiGroups: ["apps"] | ||
resources: ["statefulsets"] | ||
verbs: ["create", "delete", "get", "list", "patch", "update", "watch"] | ||
- apiGroups: ["dragonflydb.io"] | ||
resources: ["dragonflies"] | ||
verbs: ["create", "delete", "get", "list", "patch", "update", "watch"] | ||
- apiGroups: ["dragonflydb.io"] | ||
resources: ["dragonflies/finalizers"] | ||
verbs: ["update"] | ||
- apiGroups: ["dragonflydb.io"] | ||
resources: ["dragonflies/status"] | ||
verbs: ["get", "patch", "update"] | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: dragonfly-operator | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: dragonfly-operator | ||
subjects: | ||
- kind: ServiceAccount | ||
name: dragonfly-operator | ||
namespace: database |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters