diff --git a/charts/README.md b/charts/README.md new file mode 100644 index 000000000..d1930eb31 --- /dev/null +++ b/charts/README.md @@ -0,0 +1,49 @@ +# Woodpecker + +[Woodpecker](https://woodpecker.laszlo.cloud/) is a fork of the Drone CI system version 0.8, right before the 1.0 release and license changes + +## Installing Woodpecker server + +### Requirements + +``` +kubectl create secret generic drone-secret \ + --namespace sre \ + --from-literal=DRONE_SECRET=$(openssl rand -hex 32) +``` + +[GitHub](https://woodpecker.laszlo.cloud/administration/github/) + +``` +kubectl create secret generic drone-github-client \ + --namespace \ + --from-literal=DRONE_GITHUB_CLIENT=xxxxxxxx +``` + +``` +kubectl create secret generic drone-github-secret \ + --namespace \ + --from-literal=DRONE_GITHUB_SECRET=xxxxxxxx +``` + +``` +helm upgrade --install woodpecker-server --namespace woodpecker-server/ +``` + + +## Installing Woodpecker agent + +``` +helm upgrade --install woodpecker-agent --namespace woodpecker-agent/ +``` + +## Uninstall + +``` +helm delete woodpecker-agent +helm delete woodpecker-server +``` + +## Support + +For questions, suggestions, and discussion, visit the [Discord](https://discord.gg/fcMQqSMXJy). diff --git a/charts/woodpecker-agent/.helmignore b/charts/woodpecker-agent/.helmignore new file mode 100644 index 000000000..0e8a0eb36 --- /dev/null +++ b/charts/woodpecker-agent/.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/charts/woodpecker-agent/Chart.yaml b/charts/woodpecker-agent/Chart.yaml new file mode 100644 index 000000000..7e5669963 --- /dev/null +++ b/charts/woodpecker-agent/Chart.yaml @@ -0,0 +1,17 @@ +apiVersion: v2 +name: woodpecker-agent +description: A Helm chart for Woodpecker a fork of the Drone CI system +type: application +version: 0.1.0 +appVersion: "v0.13.0-rc.3" +keywords: +- continuous-delivery +- continuous-deployment +- continuous-integration +- docker +- go +sources: +- https://github.com/laszlocph/woodpecker +maintainers: +- name: Laszlo Fogas + email: laszlo@laszlo.cloud diff --git a/charts/woodpecker-agent/templates/_helpers.tpl b/charts/woodpecker-agent/templates/_helpers.tpl new file mode 100644 index 000000000..47b92192d --- /dev/null +++ b/charts/woodpecker-agent/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "woodpecker-agent.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 "woodpecker-agent.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 }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "woodpecker-agent.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "woodpecker-agent.labels" -}} +helm.sh/chart: {{ include "woodpecker-agent.chart" . }} +{{ include "woodpecker-agent.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "woodpecker-agent.selectorLabels" -}} +app.kubernetes.io/name: {{ include "woodpecker-agent.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "woodpecker-agent.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "woodpecker-agent.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/charts/woodpecker-agent/templates/deployment.yaml b/charts/woodpecker-agent/templates/deployment.yaml new file mode 100644 index 000000000..f4f615437 --- /dev/null +++ b/charts/woodpecker-agent/templates/deployment.yaml @@ -0,0 +1,79 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "woodpecker-agent.fullname" . }} + labels: + {{- include "woodpecker-agent.labels" . | nindent 4 }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + {{- include "woodpecker-agent.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "woodpecker-agent.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "woodpecker-agent.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 }} + ports: + - name: http + containerPort: 3000 + protocol: TCP + resources: + {{- toYaml .Values.resources | nindent 12 }} + volumeMounts: + - name: sock-dir + mountPath: /var/run + env: + {{- range $key, $value := .Values.env }} + - name: {{ $key }} + value: {{ $value | quote }} + {{- end }} + envFrom: + {{- range .Values.extraSecretNamesForEnvFrom }} + - secretRef: + name: {{ . }} + {{- end }} + - name: dind + image: "docker:19.03.5-dind" + env: + - name: DOCKER_DRIVER + value: overlay2 + resources: + {{- toYaml .Values.resources | nindent 12 }} + securityContext: + privileged: true + volumeMounts: + - name: sock-dir + mountPath: /var/run + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} + volumes: + - name: sock-dir + emptyDir: {} diff --git a/charts/woodpecker-agent/templates/serviceaccount.yaml b/charts/woodpecker-agent/templates/serviceaccount.yaml new file mode 100644 index 000000000..369956e70 --- /dev/null +++ b/charts/woodpecker-agent/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "woodpecker-agent.serviceAccountName" . }} + labels: + {{- include "woodpecker-agent.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/charts/woodpecker-agent/values.yaml b/charts/woodpecker-agent/values.yaml new file mode 100644 index 000000000..7302749df --- /dev/null +++ b/charts/woodpecker-agent/values.yaml @@ -0,0 +1,58 @@ +replicaCount: 2 + +image: + registry: docker.io + repository: laszlocloud/woodpecker-agent + pullPolicy: Always + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +env: + DRONE_SERVER: "woodpecker-server..svc.cluster.local:9000" + +extraSecretNamesForEnvFrom: +- drone-secret + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # 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: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +nodeSelector: {} + +tolerations: [] + +affinity: {} diff --git a/charts/woodpecker-server/.helmignore b/charts/woodpecker-server/.helmignore new file mode 100644 index 000000000..0e8a0eb36 --- /dev/null +++ b/charts/woodpecker-server/.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/charts/woodpecker-server/Chart.yaml b/charts/woodpecker-server/Chart.yaml new file mode 100644 index 000000000..f4a42c3c7 --- /dev/null +++ b/charts/woodpecker-server/Chart.yaml @@ -0,0 +1,17 @@ +apiVersion: v2 +name: woodpecker-server +description: A Helm chart for Woodpecker a fork of the Drone CI system +type: application +version: 0.1.0 +appVersion: "v0.13.0-rc.3" +keywords: +- continuous-delivery +- continuous-deployment +- continuous-integration +- docker +- go +sources: +- https://github.com/laszlocph/woodpecker +maintainers: +- name: Laszlo Fogas + email: laszlo@laszlo.cloud diff --git a/charts/woodpecker-server/templates/NOTES.txt b/charts/woodpecker-server/templates/NOTES.txt new file mode 100644 index 000000000..085079337 --- /dev/null +++ b/charts/woodpecker-server/templates/NOTES.txt @@ -0,0 +1,22 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "woodpecker-server.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "woodpecker-server.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "woodpecker-server.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "woodpecker-server.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT +{{- end }} diff --git a/charts/woodpecker-server/templates/_helpers.tpl b/charts/woodpecker-server/templates/_helpers.tpl new file mode 100644 index 000000000..7468af429 --- /dev/null +++ b/charts/woodpecker-server/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "woodpecker-server.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 "woodpecker-server.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 }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "woodpecker-server.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "woodpecker-server.labels" -}} +helm.sh/chart: {{ include "woodpecker-server.chart" . }} +{{ include "woodpecker-server.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "woodpecker-server.selectorLabels" -}} +app.kubernetes.io/name: {{ include "woodpecker-server.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "woodpecker-server.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "woodpecker-server.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/charts/woodpecker-server/templates/deployment.yaml b/charts/woodpecker-server/templates/deployment.yaml new file mode 100644 index 000000000..e34659e00 --- /dev/null +++ b/charts/woodpecker-server/templates/deployment.yaml @@ -0,0 +1,79 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "woodpecker-server.fullname" . }} + labels: + {{- include "woodpecker-server.labels" . | nindent 4 }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + {{- include "woodpecker-server.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + prometheus.io/scrape: 'true' + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "woodpecker-server.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "woodpecker-server.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 8000 + protocol: TCP + livenessProbe: + httpGet: + path: /healthz + port: 8000 + readinessProbe: + httpGet: + path: /healthz + port: 8000 + resources: + {{- toYaml .Values.resources | nindent 12 }} + volumeMounts: + - name: storage-volume + mountPath: {{ .Values.persistentVolume.mountPath }} + env: + {{- range $key, $value := .Values.env }} + - name: {{ $key }} + value: {{ $value | quote }} + {{- end }} + envFrom: + {{- range .Values.extraSecretNamesForEnvFrom }} + - secretRef: + name: {{ . }} + {{- 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 }} + volumes: + - name: storage-volume + {{- if .Values.persistentVolume.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistentVolume.existingClaim }}{{ .Values.persistentVolume.existingClaim }}{{- else }}{{ template "woodpecker-server.fullname" . }}{{- end }} + {{- end -}} diff --git a/charts/woodpecker-server/templates/ingress.yaml b/charts/woodpecker-server/templates/ingress.yaml new file mode 100644 index 000000000..381ed97d2 --- /dev/null +++ b/charts/woodpecker-server/templates/ingress.yaml @@ -0,0 +1,40 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "woodpecker-server.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "woodpecker-server.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ .path }} + pathType: Prefix + backend: + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} diff --git a/charts/woodpecker-server/templates/persistentvolumeclaim.yaml b/charts/woodpecker-server/templates/persistentvolumeclaim.yaml new file mode 100644 index 000000000..72c4bac04 --- /dev/null +++ b/charts/woodpecker-server/templates/persistentvolumeclaim.yaml @@ -0,0 +1,17 @@ +{{- if .Values.persistentVolume.enabled -}} +{{- if not .Values.persistentVolume.existingClaim -}} +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: {{ include "woodpecker-server.fullname" . }} + labels: + {{- include "woodpecker-server.labels" . | nindent 4 }} +spec: + accessModes: + - ReadWriteOnce + storageClassName: "{{ .Values.persistentVolume.storageClass }}" + resources: + requests: + storage: "{{ .Values.persistentVolume.size }}" +{{- end -}} +{{- end -}} diff --git a/charts/woodpecker-server/templates/service.yaml b/charts/woodpecker-server/templates/service.yaml new file mode 100644 index 000000000..ce2fb758c --- /dev/null +++ b/charts/woodpecker-server/templates/service.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "woodpecker-server.fullname" . }} + labels: + {{- include "woodpecker-server.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - protocol: TCP + name: http + port: {{ .Values.service.port }} + targetPort: 8000 + - protocol: TCP + name: grpc + port: 9000 + targetPort: 9000 + selector: + {{- include "woodpecker-server.selectorLabels" . | nindent 4 }} diff --git a/charts/woodpecker-server/templates/serviceaccount.yaml b/charts/woodpecker-server/templates/serviceaccount.yaml new file mode 100644 index 000000000..006d0f376 --- /dev/null +++ b/charts/woodpecker-server/templates/serviceaccount.yaml @@ -0,0 +1,12 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "woodpecker-server.serviceAccountName" . }} + labels: + {{- include "woodpecker-server.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/charts/woodpecker-server/values.yaml b/charts/woodpecker-server/values.yaml new file mode 100644 index 000000000..b4ee90660 --- /dev/null +++ b/charts/woodpecker-server/values.yaml @@ -0,0 +1,89 @@ +replicaCount: 1 + +image: + registry: docker.io + repository: laszlocloud/woodpecker-server + pullPolicy: Always + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +env: + DRONE_ADMIN: "xxxx" + DRONE_HOST: https://"xxxxxxx" + DRONE_GITHUB: true + +extraSecretNamesForEnvFrom: +- drone-github-client +- drone-github-secret +- drone-secret + +persistentVolume: + enabled: true + size: 10Gi + mountPath: "/var/lib/drone" + storageClass: "gp2" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # 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: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: false + annotations: + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: + - path: / + backend: + serviceName: chart-example.local + servicePort: 80 + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +nodeSelector: {} + +tolerations: [] + +affinity: {}