Skip to content

Commit

Permalink
Merge pull request #7 from zesty-co/prod-release-june-3rd-2024
Browse files Browse the repository at this point in the history
Prod release - June 3rd, 2024
  • Loading branch information
michaelamar1991 authored Jun 4, 2024
2 parents bf40eb2 + 22f1641 commit 7edd614
Show file tree
Hide file tree
Showing 9 changed files with 599 additions and 563 deletions.
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ 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.0.205
version: 1.0.220
# 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: 1.0.205
appVersion: 1.0.220
12 changes: 6 additions & 6 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ apiVersion: v1
entries:
zesty:
- apiVersion: v2
appVersion: 1.0.205
created: "2024-05-27T15:10:45.117117+03:00"
appVersion: 1.0.220
created: "2024-06-03T17:53:21.705942+03:00"
description: A Helm chart for Kubernetes
digest: 756fdc4ce8f2fe6abce0b4151eb5c1311250092e14a4e69537f905b5194bd269
digest: 2693be8d7a0dcc8f3284bd812ddedd10d277f2706726c88122b3dc471cd41d51
name: zesty
type: application
urls:
- https://github.com/zesty-co/zesty-helm/releases/download/1.0.205/zesty-1.0.205.tgz
version: 1.0.205
generated: "2024-05-27T15:10:45.116754+03:00"
- https://github.com/zesty-co/zesty-helm/releases/download/1.0.220/zesty-1.0.220.tgz
version: 1.0.220
generated: "2024-06-03T17:53:21.705585+03:00"
15 changes: 15 additions & 0 deletions templates/zesty-disk.yaml → templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ spec:
labels:
app: {{ include "agent.name" . }}
spec:
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 6 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
Expand All @@ -33,8 +41,15 @@ spec:
env:
- name: ZESTY_BASE_URL
value: {{ .Values.agent.baseUrl | quote }}
{{- if ne .Values.agent.apiKey ""}}
- name: ZESTY_API_KEY
value: {{ .Values.agent.apiKey | quote }}
{{- end }}
{{- if eq .Values.agent.apiKey "" }}
envFrom:
- secretRef:
name: {{ .Values.agent.secret.name | quote }}
{{- end }}
- name: sidecar
image: {{ include "sidecar.image" . }}:{{ .Values.agent.sidecar.image.tag }}
imagePullPolicy: Always
Expand Down
Loading

0 comments on commit 7edd614

Please sign in to comment.