diff --git a/k8s/helm/coolbeans/.helmignore b/k8s/helm/coolbeans/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/k8s/helm/coolbeans/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/k8s/helm/coolbeans/Chart.yaml b/k8s/helm/coolbeans/Chart.yaml new file mode 100644 index 0000000..1befb97 --- /dev/null +++ b/k8s/helm/coolbeans/Chart.yaml @@ -0,0 +1,24 @@ +apiVersion: v2 +name: coolbeans +description: A Helm chart for Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +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.1.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 +# follow Semantic Versioning. They should reflect the version the application is using. +# It is recommended to use it with quotes. +appVersion: "v0.1.10" diff --git a/k8s/helm/coolbeans/templates/_helpers.tpl b/k8s/helm/coolbeans/templates/_helpers.tpl new file mode 100644 index 0000000..1909a94 --- /dev/null +++ b/k8s/helm/coolbeans/templates/_helpers.tpl @@ -0,0 +1,91 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "coolbeans.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "coolbeans.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +# {{- define "coolbeans.fullname.proxy" -}} +# {{- if .Values.fullnameOverride }} +# {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +# {{- else }} +# {{- $name := default .Chart.Name .Values.nameOverride }} +# {{- if contains $name .Release.Name }} +# {{- .Release.Name | trunc 63 | trimSuffix "-" }} +# {{- else }} +# {{- printf "%s-%s-proxy" .Release.Name $name | trunc 63 | trimSuffix "-" }} +# {{- end }} +# {{- end }} +# {{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "coolbeans.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "coolbeans.labels" -}} +helm.sh/chart: {{ include "coolbeans.chart" . }} +{{ include "coolbeans.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{- define "coolbeans.labels.proxy" -}} +helm.sh/chart: {{ include "coolbeans.chart" . }} +{{ include "coolbeans.selectorLabels.proxy" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "coolbeans.selectorLabels" -}} +app.kubernetes.io/name: {{ include "coolbeans.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +app.kubernetes.io/component: node +{{- end }} + +{{- define "coolbeans.selectorLabels.proxy" -}} +app.kubernetes.io/name: {{ include "coolbeans.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +app.kubernetes.io/component: proxy +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "coolbeans.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "coolbeans.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/k8s/helm/coolbeans/templates/node/configmap.yaml b/k8s/helm/coolbeans/templates/node/configmap.yaml new file mode 100644 index 0000000..52c085e --- /dev/null +++ b/k8s/helm/coolbeans/templates/node/configmap.yaml @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "coolbeans.fullname" . }} + labels: + {{- include "coolbeans.labels" . | nindent 4 }} +data: + PEERS_ADDRS: "{{ include "coolbeans.fullname" . }}-node-0.{{ include "coolbeans.fullname" . }}-node.{{ .Release.Namespace }}.svc.cluster.local:11000,{{ include "coolbeans.fullname" . }}-node-1.{{ include "coolbeans.fullname" . }}-node.{{ .Release.Namespace }}.svc.cluster.local:11000,{{ include "coolbeans.fullname" . }}-node-2.{{ include "coolbeans.fullname" . }}-node.{{ .Release.Namespace }}.svc.cluster.local:11000" + BOOTSTRAP_NODE_ID: "{{ include "coolbeans.fullname" . }}-node-0" + ADDR_SUFFIX: "{{ include "coolbeans.fullname" . }}-node.{{ .Release.Namespace }}.svc.cluster.local" + BEANSTALKD_PORT: "{{ .Values.clusterNode.config.beanstalkd_port | default "11300" }}" + COOLBEANS_RAFT_PORT: "{{ .Values.clusterNode.config.coolbeans_raft_port | default "21000" }}" + COOLBEANS_RPC_PORT: "{{ .Values.clusterNode.config.coolbeans_rpc_port | default "11000" }}" + DATA_DIR: "{{ .Values.clusterNode.config.data_dir | default "/root/data" }}" + SNAPSHOT_THRESHOLD: "{{ .Values.clusterNode.config.snapshot_threshold | default "100" }}" + TRAILING_LOG_COUNT: "{{ .Values.clusterNode.config.trailing_log_count | default "10240" }}" + SNAPSHOT_INTERVAL_SECS: "{{ .Values.clusterNode.config.snapshot_interval_secs | default "30" }}" + MAX_JOB_SIZE_BYTES: "{{ .Values.clusterNode.config.max_job_size_bytes | default "65535" }}" + PROMETHEUS_PORT: "{{ .Values.clusterNode.config.prometheus_port | default "2020" }}" + RETAIN_SNAPSHOT_COUNT: "{{ .Values.clusterNode.config.retain_snapshot_count | default "3" }}" diff --git a/k8s/helm/coolbeans/templates/node/hpa.yaml b/k8s/helm/coolbeans/templates/node/hpa.yaml new file mode 100644 index 0000000..4d2cbf7 --- /dev/null +++ b/k8s/helm/coolbeans/templates/node/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.clusterNode.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "coolbeans.fullname" . }}-node + labels: + {{- include "coolbeans.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "coolbeans.fullname" . }}-node + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/k8s/helm/coolbeans/templates/node/pdr.yaml b/k8s/helm/coolbeans/templates/node/pdr.yaml new file mode 100644 index 0000000..0729f44 --- /dev/null +++ b/k8s/helm/coolbeans/templates/node/pdr.yaml @@ -0,0 +1,17 @@ +{{ if or (eq (.Values.clusterNode.replicaCount | float64) 3.0) (eq (.Values.clusterNode.replicaCount | float64) 5.0) }} +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + name: {{ include "coolbeans.fullname" . }}-node + labels: + {{- include "coolbeans.labels" . | nindent 4 }} +spec: +{{ if eq (.Values.clusterNode.replicaCount | float64) 3.0 }} + minAvailable: 2 +{{ else if eq (.Values.clusterNode.replicaCount | float64) 5.0 }} + minAvailable: 3 +{{ end }} + selector: + matchLabels: + {{- include "coolbeans.selectorLabels" . | nindent 6 }} +{{ end }} diff --git a/k8s/helm/coolbeans/templates/node/service.yaml b/k8s/helm/coolbeans/templates/node/service.yaml new file mode 100644 index 0000000..4cb6735 --- /dev/null +++ b/k8s/helm/coolbeans/templates/node/service.yaml @@ -0,0 +1,21 @@ + +apiVersion: v1 +kind: Service +metadata: + name: {{ include "coolbeans.fullname" . }}-node + labels: + {{- include "coolbeans.labels" . | nindent 4 }} +spec: + clusterIP: None + ports: + - name: grpc-server + port: {{ .Values.clusterNode.config.coolbeans_rpc_port | default "11000" }} + targetPort: grpc-server + - name: raft-tcp + port: {{ .Values.clusterNode.config.coolbeans_raft_port | default "21000" }} + targetPort: raft-tcp + - name: metrics + port: {{ .Values.clusterNode.config.prometheus_port | default "2020" }} + targetPort: metrics + selector: + {{- include "coolbeans.selectorLabels" . | nindent 4 }} diff --git a/k8s/helm/coolbeans/templates/node/statefulset.yaml b/k8s/helm/coolbeans/templates/node/statefulset.yaml new file mode 100644 index 0000000..d0801e9 --- /dev/null +++ b/k8s/helm/coolbeans/templates/node/statefulset.yaml @@ -0,0 +1,186 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: {{ include "coolbeans.fullname" . }}-node + labels: + {{- include "coolbeans.labels" . | nindent 4 }} +spec: + serviceName: {{ include "coolbeans.fullname" . }}-node + podManagementPolicy: "Parallel" + {{- if not .Values.clusterNode.autoscaling.enabled }} + replicas: {{ .Values.clusterNode.replicaCount }} + {{- end }} + updateStrategy: + type: RollingUpdate + # rollingUpdate: + # partition: {{ .Values.clusterNode.replicaCount }} + selector: + matchLabels: + {{- include "coolbeans.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{ toYaml .Values.podLabels | nindent 8 }} + {{- include "coolbeans.labels" . | nindent 8 }} + spec: + {{- if or .Values.topologySpreadConstraints.zone .Values.topologySpreadConstraints.hostname }} + topologySpreadConstraints: + {{- if .Values.topologySpreadConstraints.zone }} + - maxSkew: 1 + topologyKey: topology.kubernetes.io/zone + whenUnsatisfiable: DoNotSchedule + labelSelector: + matchLabels: + {{- include "coolbeans.selectorLabels" . | nindent 12 }} + {{- end }} + {{- if .Values.topologySpreadConstraints.hostname }} + - maxSkew: 1 + topologyKey: kubernetes.io/hostname + whenUnsatisfiable: DoNotSchedule + labelSelector: + matchLabels: + {{- include "coolbeans.selectorLabels" . | nindent 12 }} + {{- end }} + {{- end }} + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + terminationGracePeriodSeconds: 30 + serviceAccountName: {{ include "coolbeans.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: + - name: POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: NODE_ID + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: COOLBEANS_RAFT_PORT + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: COOLBEANS_RAFT_PORT + - name: COOLBEANS_RPC_PORT + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: COOLBEANS_RPC_PORT + - name: PEERS_ADDRS + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: PEERS_ADDRS + - name: BOOTSTRAP_NODE_ID + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: BOOTSTRAP_NODE_ID + - name: DATA_DIR + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: DATA_DIR + - name: ADDR_SUFFIX + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: ADDR_SUFFIX + - name: SNAPSHOT_THRESHOLD + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: SNAPSHOT_THRESHOLD + - name: TRAILING_LOG_COUNT + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: TRAILING_LOG_COUNT + - name: SNAPSHOT_INTERVAL_SECS + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: SNAPSHOT_INTERVAL_SECS + - name: MAX_JOB_SIZE_BYTES + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: MAX_JOB_SIZE_BYTES + command: [ + "/root/coolbeans", "cluster-node", + "--node-id", "$(NODE_ID)", + "--root-dir", "$(DATA_DIR)", + "--bootstrap-node-id", "$(BOOTSTRAP_NODE_ID)", + "--raft-listen-addr", "$(POD_IP):$(COOLBEANS_RAFT_PORT)", + "--raft-advertized-addr", "$(NODE_ID).$(ADDR_SUFFIX):$(COOLBEANS_RAFT_PORT)", + "--node-listen-addr", ":$(COOLBEANS_RPC_PORT)", + "--node-peer-addrs", "$(PEERS_ADDRS)", + ## By default all logs are fsynced to disk (bolt-db) + ## By default fsync is called for every commit to the disk log + # "--no-fsync", + ## + ## Here, all the logs are in memory & not in bolt-db, but snapshots as usual are on + ## disk. You can tune the snapshot threshold, trailing-log-count etc.. + # "--no-disk-log" + "--retain-snapshot-count", "{{ .Values.clusterNode.config.retain_snapshot_count | default "3" }}", + "--restore-timeout-secs", "600", + "--snapshot-threshold", "$(SNAPSHOT_THRESHOLD)", + "--trailing-log-count", "$(TRAILING_LOG_COUNT)", + "--snapshot-interval-secs", "$(SNAPSHOT_INTERVAL_SECS)", + "--prometheus-addr", "127.0.0.1:{{ .Values.clusterNode.config.prometheus_port | default "2020" }}" + ] + ports: + - containerPort: {{ .Values.clusterNode.config.coolbeans_rpc_port | default "11000" }} + name: grpc-server + - containerPort: {{ .Values.clusterNode.config.coolbeans_raft_port | default "21000" }} + name: raft-tcp + - containerPort: {{ .Values.clusterNode.config.prometheus_port | default "2020" }} + name: metrics + resources: + {{- toYaml .Values.clusterNode.resources | nindent 12 }} + {{- if .Values.clusterNode.persistance.enabled}} + volumeMounts: + - name: {{ include "coolbeans.fullname" . }}-node + mountPath: {{ .Values.clusterNode.config.data_dir | default "/root/data" }} + {{- end }} + # readinessProbe: + # exec: + # command: ["/root/coolbeans", "--verbose", "cluster-client", "is_leader", "--node-addr", "localhost:11000"] + # initialDelaySeconds: 30 + # periodSeconds: 15 + {{- if .Values.clusterNode.persistance.enabled}} + volumeClaimTemplates: + - metadata: + name: {{ include "coolbeans.fullname" . }}-node + spec: + accessModes: [ "ReadWriteOnce" ] + storageClassName: {{ .Values.clusterNode.persistance.storageClassName }} + resources: + requests: + storage: {{ .Values.clusterNode.persistance.storage }} + {{- end }} diff --git a/k8s/helm/coolbeans/templates/proxy/deployment.yaml b/k8s/helm/coolbeans/templates/proxy/deployment.yaml new file mode 100644 index 0000000..31ba527 --- /dev/null +++ b/k8s/helm/coolbeans/templates/proxy/deployment.yaml @@ -0,0 +1,93 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "coolbeans.fullname" . }}-proxy + labels: + {{- include "coolbeans.labels.proxy" . | nindent 4 }} +spec: + selector: + matchLabels: + {{- include "coolbeans.selectorLabels.proxy" . | nindent 6 }} + {{- if not .Values.proxy.autoscaling.enabled }} + replicas: {{ .Values.proxy.replicaCount }} + {{- end }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "coolbeans.labels.proxy" . | nindent 8 }} + spec: + {{- if or .Values.topologySpreadConstraints.zone .Values.topologySpreadConstraints.hostname }} + topologySpreadConstraints: + {{- if .Values.topologySpreadConstraints.zone }} + - maxSkew: 1 + topologyKey: topology.kubernetes.io/zone + whenUnsatisfiable: DoNotSchedule + labelSelector: + matchLabels: + {{- include "coolbeans.selectorLabels.proxy" . | nindent 12 }} + {{- end }} + {{- if .Values.topologySpreadConstraints.hostname }} + - maxSkew: 1 + topologyKey: kubernetes.io/hostname + whenUnsatisfiable: DoNotSchedule + labelSelector: + matchLabels: + {{- include "coolbeans.selectorLabels.proxy" . | nindent 12 }} + {{- end }} + {{- end }} + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "coolbeans.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + command: [ "/root/coolbeans", + "beanstalkd", + "--listen-port", "$(BEANSTALKD_PORT)", + "--upstream-addrs", "$(PEERS_ADDRS)", + "--max-job-size", "$(MAX_JOB_SIZE_BYTES)"] + ports: + - containerPort: {{ .Values.clusterNode.config.beanstalkd_port | default "11300" }} + name: beanstalkd + resources: + {{- toYaml .Values.proxy.resources | nindent 12 }} + env: + - name: BEANSTALKD_PORT + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: BEANSTALKD_PORT + - name: PEERS_ADDRS + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: PEERS_ADDRS + - name: MAX_JOB_SIZE_BYTES + valueFrom: + configMapKeyRef: + name: {{ include "coolbeans.fullname" . }} + key: MAX_JOB_SIZE_BYTES + restartPolicy: Always \ No newline at end of file diff --git a/k8s/helm/coolbeans/templates/proxy/hpa.yaml b/k8s/helm/coolbeans/templates/proxy/hpa.yaml new file mode 100644 index 0000000..29af2e1 --- /dev/null +++ b/k8s/helm/coolbeans/templates/proxy/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.proxy.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "coolbeans.fullname" . }}-proxy + labels: + {{- include "coolbeans.labels.proxy" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "coolbeans.fullname" . }}-proxy + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/k8s/helm/coolbeans/templates/proxy/service-external-lb.yaml b/k8s/helm/coolbeans/templates/proxy/service-external-lb.yaml new file mode 100644 index 0000000..87a038c --- /dev/null +++ b/k8s/helm/coolbeans/templates/proxy/service-external-lb.yaml @@ -0,0 +1,21 @@ +{{- if .Values.proxy.service.externalLoadBalancer.enabled }} +apiVersion: v1 +kind: Service +metadata: + name: {{ include "coolbeans.fullname" . }}-proxy + labels: + {{- include "coolbeans.labels.proxy" . | nindent 4 }} + {{- with .Values.proxy.service.externalLoadBalancer.annotations }} + annotations: + {{- . | toYaml | nindent 4 }} + {{- end }} +spec: + type: LoadBalancer + ports: + - port: {{ .Values.proxy.service.port }} + targetPort: beanstalkd + protocol: TCP + name: beanstalkd + selector: + {{- include "coolbeans.selectorLabels.proxy" . | nindent 4 }} +{{- end }} diff --git a/k8s/helm/coolbeans/templates/proxy/service.yaml b/k8s/helm/coolbeans/templates/proxy/service.yaml new file mode 100644 index 0000000..8819a64 --- /dev/null +++ b/k8s/helm/coolbeans/templates/proxy/service.yaml @@ -0,0 +1,17 @@ +{{- if not .Values.proxy.service.externalLoadBalancer.enabled }} +apiVersion: v1 +kind: Service +metadata: + name: {{ include "coolbeans.fullname" . }}-proxy + labels: + {{- include "coolbeans.labels.proxy" . | nindent 4 }} +spec: + type: {{ .Values.proxy.service.type }} + ports: + - port: {{ .Values.proxy.service.port }} + targetPort: beanstalkd + protocol: TCP + name: beanstalkd + selector: + {{- include "coolbeans.selectorLabels.proxy" . | nindent 4 }} +{{- end }} diff --git a/k8s/helm/coolbeans/templates/serviceaccount.yaml b/k8s/helm/coolbeans/templates/serviceaccount.yaml new file mode 100644 index 0000000..c87d0cb --- /dev/null +++ b/k8s/helm/coolbeans/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "coolbeans.serviceAccountName" . }} + labels: + {{- include "coolbeans.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/k8s/helm/coolbeans/templates/tests/test.yaml b/k8s/helm/coolbeans/templates/tests/test.yaml new file mode 100644 index 0000000..faeec3e --- /dev/null +++ b/k8s/helm/coolbeans/templates/tests/test.yaml @@ -0,0 +1,51 @@ +{{- if .Values.test.enabled }} +apiVersion: batch/v1 +kind: Job +metadata: + name: {{ include "coolbeans.fullname" . }}-test-producer + labels: + jobgroup: {{ include "coolbeans.fullname" . }}-test-producer +spec: + template: + metadata: + name: {{ include "coolbeans.fullname" . }}-test-producer + namespace: coolbeans + labels: + jobgroup: {{ include "coolbeans.fullname" . }}-test-producer + spec: + containers: + - name: {{ include "coolbeans.fullname" . }}-test-producer + image: 1xyz/jellybeans-workload:master-ebe38f7 + command: [ + "/root/jellybeans-workload", "producer", + "--addr", "{{ include "coolbeans.fullname" . }}-proxy.{{ .Release.Namespace }}.svc.cluster.local:{{ .Values.clusterNode.config.beanstalkd_port | default "11300" }}", + "--count", "10000" + ] + restartPolicy: Never + backoffLimit: 1 +--- +apiVersion: batch/v1 +kind: Job +metadata: + name: consume-batch-0 + namespace: coolbeans + labels: + jobgroup: consumer +spec: + template: + metadata: + name: consumer + namespace: coolbeans + labels: + jobgroup: consumer + spec: + containers: + - name: consumer + image: 1xyz/jellybeans-workload:master-ebe38f7 + command: [ + "/root/jellybeans-workload", "consumer", + "--addr", "{{ include "coolbeans.fullname" . }}-proxy.{{ .Release.Namespace }}.svc.cluster.local:{{ .Values.clusterNode.config.beanstalkd_port | default "11300" }}" + ] + restartPolicy: Never + backoffLimit: 1 +{{- end }} diff --git a/k8s/helm/coolbeans/values.yaml b/k8s/helm/coolbeans/values.yaml new file mode 100644 index 0000000..2254994 --- /dev/null +++ b/k8s/helm/coolbeans/values.yaml @@ -0,0 +1,109 @@ +# Default values for coolbeans. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +podLabels: {} +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +topologySpreadConstraints: + zone: false + hostname: false + +image: + repository: 1xyz/coolbeans + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: v0.1.10 + +clusterNode: + replicaCount: 3 + autoscaling: + enabled: false + minReplicas: 3 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + resources: + limits: + cpu: "2000m" + memory: 2Gi + requests: + cpu: "500m" + memory: 1Gi + persistance: + enabled: true + storage: 1Gi + storageClassName: "" + # prometheus: + # enabled: false + # endpoint: "" + # endpoint: prom-endpoint:prom-port + config: + beanstalkd_port: "11300" + coolbeans_raft_port: "21000" + coolbeans_rpc_port: "11000" + data_dir: "/root/data" + snapshot_threshold: "100" + trailing_log_count: "10240" + snapshot_interval_secs: "30" + max_job_size_bytes: "65535" + prometheus_port: "2020" + retain_snapshot_count: "3" + +proxy: + replicaCount: 2 + autoscaling: + enabled: false + minReplicas: 2 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + resources: + limits: + memory: "128Mi" + cpu: "500m" + requests: + memory: "64Mi" + cpu: "250m" + service: + type: ClusterIP + port: 11300 + externalLoadBalancer: + enabled: false + annotations: {} + # service.beta.kubernetes.io/aws-load-balancer-internal: "true" + # service.beta.kubernetes.io/aws-load-balancer-scheme: "internal" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: false + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +test: + enabled: false + diff --git a/k8s/cluster-node/0-namespace.yaml b/k8s/poc-static-resources/cluster-node/0-namespace.yaml similarity index 100% rename from k8s/cluster-node/0-namespace.yaml rename to k8s/poc-static-resources/cluster-node/0-namespace.yaml diff --git a/k8s/cluster-node/1-configmap.yaml b/k8s/poc-static-resources/cluster-node/1-configmap.yaml similarity index 100% rename from k8s/cluster-node/1-configmap.yaml rename to k8s/poc-static-resources/cluster-node/1-configmap.yaml diff --git a/k8s/cluster-node/2-service.yaml b/k8s/poc-static-resources/cluster-node/2-service.yaml similarity index 100% rename from k8s/cluster-node/2-service.yaml rename to k8s/poc-static-resources/cluster-node/2-service.yaml diff --git a/k8s/cluster-node/3-statefulset.yaml b/k8s/poc-static-resources/cluster-node/3-statefulset.yaml similarity index 100% rename from k8s/cluster-node/3-statefulset.yaml rename to k8s/poc-static-resources/cluster-node/3-statefulset.yaml diff --git a/k8s/prometheus/0-configmap.yaml b/k8s/poc-static-resources/prometheus/0-configmap.yaml similarity index 100% rename from k8s/prometheus/0-configmap.yaml rename to k8s/poc-static-resources/prometheus/0-configmap.yaml diff --git a/k8s/prometheus/1-deployment.yaml b/k8s/poc-static-resources/prometheus/1-deployment.yaml similarity index 100% rename from k8s/prometheus/1-deployment.yaml rename to k8s/poc-static-resources/prometheus/1-deployment.yaml diff --git a/k8s/proxy/deployment.yaml b/k8s/poc-static-resources/proxy/deployment.yaml similarity index 100% rename from k8s/proxy/deployment.yaml rename to k8s/poc-static-resources/proxy/deployment.yaml diff --git a/k8s/poc-static-resources/setup.sh b/k8s/poc-static-resources/setup.sh new file mode 100755 index 0000000..9469fde --- /dev/null +++ b/k8s/poc-static-resources/setup.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +if ! [ -x "$(command -v kubectl)" ]; then + echo 'Error: kubectl not found in path.' >&2 + exit 1 +fi + +for f in cluster-node/*.yaml; do + echo "kubectl -n coolbeans apply -f $f" + kubectl -n coolbeans apply -f $f +done + +echo "Apply proxy/deployment.yaml" +kubectl -n coolbeans apply -f proxy/deployment.yaml + +echo "Installing a Prometheus service to scrape metrics" +for f in prometheus/*.yaml; do + echo "kubectl -n coolbeans apply -f $f" + kubectl -n coolbeans apply -f $f +done diff --git a/shutdown.sh b/k8s/poc-static-resources/shutdown.sh similarity index 100% rename from shutdown.sh rename to k8s/poc-static-resources/shutdown.sh diff --git a/k8s/workload/consumer.yaml b/k8s/poc-static-resources/workload/consumer.yaml similarity index 100% rename from k8s/workload/consumer.yaml rename to k8s/poc-static-resources/workload/consumer.yaml diff --git a/k8s/workload/producer.yaml b/k8s/poc-static-resources/workload/producer.yaml similarity index 100% rename from k8s/workload/producer.yaml rename to k8s/poc-static-resources/workload/producer.yaml diff --git a/setup.sh b/setup.sh deleted file mode 100755 index ca439a7..0000000 --- a/setup.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -if ! [ -x "$(command -v kubectl)" ]; then - echo 'Error: kubectl not found in path.' >&2 - exit 1 -fi - -for f in k8s/cluster-node/*.yaml -do - echo "kubectl apply -f $f" - kubectl apply -f $f -done - -echo "Apply proxy/deployment.yaml" -kubectl apply -f k8s/proxy/deployment.yaml - -echo "Installing a Prometheus service to scrape metrics" -for f in k8s/prometheus/*.yaml -do - echo "kubectl apply -f $f" - kubectl apply -f $f -done