Compare commits

...

32 Commits

Author SHA1 Message Date
Laszlo Fogas 52b7f9926b Support for Gimlet metadata annotations 2023-08-21 16:40:59 +02:00
Laszlo Fogas 3fda8ce594 Bugfix: namespace was missing 2023-08-21 16:39:26 +02:00
Laszlo Fogas bcb020a12e We only reference existing service accounts, never create it 2023-08-21 16:38:43 +02:00
Github Action b2b6ac4a06 The next release version will be 0.54.0 2023-08-18 06:42:37 +00:00
Github Action af09d73974 Publishing 0.53.0 to the Helm repository 2023-08-18 06:42:36 +00:00
Laszlo Fogas 5db236e7b2 Removed empty lines 2023-08-18 08:37:47 +02:00
Laszlo Fogas 20455220c5 Revert "Removed emoty lines"
This reverts commit c4b19f2801.
2023-08-17 19:28:47 +02:00
Laszlo Fogas c4b19f2801 Removed emoty lines 2023-08-17 19:24:31 +02:00
Github Action ba5fabf679 The next release version will be 0.53.0 2023-08-14 13:03:52 +00:00
Github Action af56df9c19 Publishing 0.52.0 to the Helm repository 2023-08-14 13:03:51 +00:00
Youcef Guichi d0aa57c456 Add security context to init containers -- Added unit test for it (#76)
* Add security context to init containers -- Added unit test for it

* Minor cleaning

---------

Co-authored-by: Laszlo Fogas <laszlo@gimlet.io>
2023-08-14 15:01:22 +02:00
Laszlo Fogas 7b56a9d7c4 Fixing chart version 2023-08-14 13:39:54 +02:00
Laszlo Fogas 4943dc16c6 Preparing for static-site release 2023-08-14 13:39:19 +02:00
Github Action 3445336501 The next release version will be 0.52.0 2023-08-11 08:59:15 +00:00
Github Action ddf8e253e7 Publishing 0.51.0 to the Helm repository 2023-08-11 08:59:15 +00:00
Ádám Sisák 38e586aa7b Remove build tag in static site (#77)
* Chart schema edit

* Build tag removed
2023-08-11 10:58:05 +02:00
Github Action f0d1bd712a The next release version will be 0.51.0 2023-07-12 13:20:54 +00:00
Github Action fe697ea2d4 Publishing 0.50.0 to the Helm repository 2023-07-12 13:20:54 +00:00
Youcef Guichi aae45103a2 Add ignoreLimits flag to container resources (#74) 2023-07-12 14:55:34 +02:00
Github Action 8c0968d1b5 The next release version will be 0.50.0 2023-06-09 07:00:08 +00:00
Github Action e704f8896c Publishing 0.49.0 to the Helm repository 2023-06-09 07:00:07 +00:00
Youcef Guichi 00bc7eb65f Merge pull request #73 from gimlet-io/add-cronjob-schedule-to-ui
Add schedule field for cronjob to the UI
2023-06-09 08:56:46 +02:00
Youcef Guichi ad1d2118e5 Downgrade common version to 0.3.0 (2) 2023-06-08 16:30:56 +02:00
Youcef Guichi a072b8e39e Downgrade common version to 0.3.0 2023-06-08 16:29:20 +02:00
Youcef Guichi 846e17eb44 Reorder cronjob UI elements 2023-06-08 16:19:00 +02:00
Youcef Guichi 8b62aad4a9 fix white spacing 2023-06-08 16:10:05 +02:00
Youcef Guichi 6f87a0ad69 fix white spacing 2023-06-08 15:59:10 +02:00
Youcef Guichi 4e74387f03 Upgradae dependencies version for onechart 2023-06-08 15:49:58 +02:00
Youcef Guichi 4b4357c6ec Upgrade common chart version to 0.4.0 2023-06-08 15:47:28 +02:00
Youcef Guichi 8fe2bc6933 Add schedule field for cronjob to the UI 2023-06-08 15:44:04 +02:00
Github Action d37592faeb The next release version will be 0.49.0 2023-06-05 11:59:24 +00:00
Github Action 11b5d6f25b Publishing 0.48.0 to the Helm repository 2023-06-05 11:59:23 +00:00
47 changed files with 402 additions and 160 deletions
+1
View File
@@ -96,6 +96,7 @@ jobs:
sed -i "s/version: $CHART_VERSION/version: $increased_version/" charts/onechart/Chart.yaml
sed -i "s/version: $CHART_VERSION/version: $increased_version/" charts/cron-job/Chart.yaml
sed -i "s/version: $CHART_VERSION/version: $increased_version/" charts/static-site/Chart.yaml
git status
git add .
+1 -1
View File
@@ -15,4 +15,4 @@ type: library
# 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.3.0
version: 0.3.1
+2 -2
View File
@@ -1,5 +1,5 @@
{{- define "common.envFromRef.tpl" -}}
{{- if or (or (or (.Values.vars) (.Values.secretEnabled)) .Values.sealedSecrets) .Values.secretName }}
{{- if or (or (or (.Values.vars) (.Values.secretEnabled)) .Values.sealedSecrets) .Values.secretName -}}
envFrom: &envFrom
{{- if .Values.vars }}
- configMapRef:
@@ -18,4 +18,4 @@ envFrom: &envFrom
name: {{ template "common.robustName" .Release.Name }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
@@ -1,5 +1,5 @@
{{- define "common.volumeMountsRef.tpl" -}}
{{- if or (or (or (.Values.volumes) (.Values.sealedFileSecrets)) .Values.fileSecrets) .Values.existingFileSecrets }}
{{- if or (or (or (.Values.volumes) (.Values.sealedFileSecrets)) .Values.fileSecrets) .Values.existingFileSecrets -}}
volumeMounts: &volumeMounts
{{- range .Values.volumes }}
{{- if not (hasPrefix "init-" .name) }}
+1 -1
View File
@@ -1,5 +1,5 @@
{{- define "common.volumesRef.tpl" -}}
{{- if or (or (or (.Values.volumes) (.Values.sealedFileSecrets)) .Values.fileSecrets) .Values.existingFileSecrets }}
{{- if or (or (or (.Values.volumes) (.Values.sealedFileSecrets)) .Values.fileSecrets) .Values.existingFileSecrets -}}
volumes:
{{- range .Values.volumes }}
- name: {{ .name }}
+3 -3
View File
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: file://../common
version: 0.2.0
digest: sha256:ea028bf07fdc361daabca0c0155e4511cc4fffda94d2f697f4d16013f250c8a8
generated: "2023-02-17T15:14:21.719376584+01:00"
version: 0.3.1
digest: sha256:64689b29ef8b2262efbd5d49bccf40f798698d426dcfdc7c632aaf183a8cc681
generated: "2023-08-18T08:34:24.144108449+02:00"
+2 -2
View File
@@ -15,9 +15,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: 0.48.0
version: 0.54.0
dependencies:
- name: common
version: 0.3.0
version: 0.3.1
repository: file://../common
Binary file not shown.
Binary file not shown.
+1
View File
@@ -1,6 +1,7 @@
[
{
"schemaIDs": [
"#/properties/schedule",
"#/properties/image",
"#/properties/shell",
"#/properties/command"
@@ -0,0 +1,11 @@
suite: test cron job
templates:
- cronJob.yaml
tests:
- it: Should set schedule
set:
schedule: "*/1 * * * *"
asserts:
- equal:
path: spec.schedule
value: "*/1 * * * *"
+7
View File
@@ -238,6 +238,13 @@
"description": "The command to run in the cronjob",
"default": "echo \"I'm alive\""
},
"schedule": {
"$id": "#/properties/schedule",
"type": "string",
"title": "Schedule",
"description": "Schedule your cronjob",
"default": "*/1 * * * *"
},
"vars": {
"$id": "#/properties/vars",
"type": "object",
+3 -3
View File
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: file://../common
version: 0.2.0
digest: sha256:ea028bf07fdc361daabca0c0155e4511cc4fffda94d2f697f4d16013f250c8a8
generated: "2023-02-17T15:13:57.926786542+01:00"
version: 0.3.1
digest: sha256:64689b29ef8b2262efbd5d49bccf40f798698d426dcfdc7c632aaf183a8cc681
generated: "2023-08-18T08:31:18.469039683+02:00"
+2 -2
View File
@@ -15,9 +15,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: 0.48.0
version: 0.54.0
dependencies:
- name: common
version: 0.3.0
version: 0.3.1
repository: file://../common
Binary file not shown.
Binary file not shown.
+13 -4
View File
@@ -63,11 +63,15 @@ spec:
{{- end }}
volumeMounts:
{{- range $.Values.volumes }}
{{if (or (hasPrefix "shared-" .name) (hasPrefix "init-" .name))}}
{{- if (or (hasPrefix "shared-" .name) (hasPrefix "init-" .name))}}
- mountPath: {{ .path }}
name: {{ .name }}
{{- end }}
{{- end }}
{{- end }}
{{- if .securityContext }}
securityContext:
{{- toYaml .securityContext | nindent 12 }}
{{- end}}
{{- end }}
containers:
- name: {{ template "robustName" .Release.Name }}
@@ -87,7 +91,7 @@ spec:
- name: http
containerPort: {{ .Values.containerPort }}
protocol: TCP
{{ else }}
{{- else }}
{{- range .Values.ports }}
- name: {{ .name }}
containerPort: {{ .containerPort }}
@@ -117,7 +121,12 @@ spec:
{{- include "common.volumeMountsRef.tpl" . | nindent 10 }}
{{- if not .Values.resources.ignore }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- if .Values.resources.ignoreLimits }}
requests:
{{- toYaml .Values.resources.requests | nindent 14 }}
{{- else }}
{{- toYaml .Values.resources | nindent 12 }}
{{- end }}
{{- end }}
{{- if .Values.sidecar }}
- name: {{ template "robustName" .Release.Name }}-sidecar
+1 -1
View File
@@ -31,7 +31,7 @@ spec:
{{- if .Values.nodePort }}
nodePort: {{ .Values.nodePort }}
{{- end }}
{{ else }}
{{- else }}
{{- range .Values.ports }}
- name: {{ .name }}
port: {{ if .svcPort }}{{ .svcPort }}{{ else }}{{ .containerPort }}{{ end }}
@@ -26,6 +26,13 @@ tests:
- equal:
path: spec.template.spec.initContainers[0].command
value: ['/bin/sh', '-c', 'while true; do date; sleep 2; done && ls /data && printf something']
- it: Should set security context
set:
initContainers:
- securityContext:
runAsNonRoot: true
asserts:
- equal:
path: spec.template.spec.initContainers[0].securityContext.runAsNonRoot
value: true
@@ -15,4 +15,26 @@ tests:
ignore: true
asserts:
- isNull:
path: spec.template.spec.containers[0].resources
path: spec.template.spec.containers[0].resources
- it: Should ignore resources limits when ignoreLimits flag is set
set:
resources:
ignoreLimits: true
asserts:
- isNull:
path: spec.template.spec.containers[0].resources.limits
- isNotNull:
path: spec.template.spec.containers[0].resources.requests
- it: Should create requests when ignoreLimits flag is set
set:
resources:
ignoreLimits: true
requests:
cpu: "1000m"
memory: "200Mi"
asserts:
- isNotNull:
path: spec.template.spec.containers[0].resources.requests
- equal:
path: spec.template.spec.containers[0].resources.requests.cpu
value: 1000m
+10
View File
@@ -283,6 +283,16 @@
true
]
},
"ignoreLimits": {
"$id": "#/properties/resources/properties/ignoreLimits",
"type": "boolean",
"title": "Ignore limits",
"description": "If set to true, limits in resource configuration will be ignored",
"default": false,
"examples": [
true
]
},
"requests": {
"$id": "#/properties/resources/properties/requests",
"type": "object",
+1 -1
View File
@@ -14,5 +14,5 @@ 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
version: 0.54.0
+3 -4
View File
@@ -3,14 +3,13 @@
"schemaIDs": [
"#/properties/gitCloneUrl",
"#/properties/buildImage",
"#/properties/buildTag",
"#/properties/buildScript",
"#/properties/builtAssets"
],
"uiSchema": {
"#/properties/buildScript":{
"ui:widget": "textarea"
"#/properties/buildScript": {
"ui:widget": "textarea",
"ui:rows": 10
}
},
"metaData": {
+4 -2
View File
@@ -23,7 +23,9 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ template "robustName" .Release.Name }}
{{- if .Values.serviceAccount }}
serviceAccountName: {{ .Values.serviceAccount }}
{{- end }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
volumes:
@@ -31,7 +33,7 @@ spec:
emptyDir: {}
initContainers:
- name: init-con
image: {{ .Values.buildImage }}:{{ .Values.buildTag }}
image: {{ .Values.buildImage }}
{{- if .Values.buildScript }}
command:
- sh
+10
View File
@@ -2,8 +2,18 @@ apiVersion: v1
kind: Service
metadata:
name: {{ template "robustName" .Release.Name }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "staticSite.labels" . | nindent 4 }}
{{- if or .Values.gitRepository .Values.gitSha }}
annotations:
{{- if .Values.gitRepository }}
gimlet.io/git-repository: {{ .Values.gitRepository }}
{{- end }}
{{- if .Values.gitSha }}
gimlet.io/git-sha: {{ .Values.gitSha }}
{{- end }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:
@@ -1,12 +0,0 @@
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ template "robustName" .Release.Name }}
labels:
{{- include "staticSite.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}
@@ -5,11 +5,8 @@ tests:
- it: Should set image, tag and command
set:
gitCloneUrl: https:/github.com/mycompany/myrepo.git
buildImage: nginx
buildTag: x.y.z
buildImage: nginx:x.y.z
asserts:
- equal:
path: spec.template.spec.initContainers[0].image
value: nginx:x.y.z
+2 -11
View File
@@ -8,8 +8,7 @@
"examples": [
{
"gitCloneUrl": "https://github.com/gimlet-io/hugo-site.git",
"buildImage": "node",
"buildTag": "latest",
"buildImage": "node:latest",
"buildScript": "npm install && npm install -g gatsby-cli && gatsby build",
"builtAssets": "public/"
}
@@ -17,7 +16,6 @@
"required": [
"gitCloneUrl",
"buildImage",
"buildTag",
"buildScript",
"builtAssets"
],
@@ -34,13 +32,7 @@
"type": "string",
"title": "Build image",
"description": "The image that will be used for the build proccess",
"default":"bitnami/git"
},
"buildTag": {
"$id": "#/properties/buildTag",
"type": "string",
"title": "Image tag",
"default": "latest"
"default": "bitnami/git:latest"
},
"buildScript": {
"$id": "#/properties/buildScript",
@@ -119,7 +111,6 @@
}
}
}
},
"additionalProperties": true
}
+1 -2
View File
@@ -63,8 +63,7 @@ affinity: {}
# values to build and deploy static sites
gitCloneUrl: https://github.com/gimlet-io/hugo-site.git
buildImage: bitnami/git # the image must have git installed
buildTag: latest
buildImage: bitnami/git:latest # the image must have git installed
buildScript: |
# !/usr/bin/env bash
# pre -reqs
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+283 -97
View File
@@ -2,7 +2,91 @@ apiVersion: v1
entries:
cron-job:
- apiVersion: v2
created: "2023-04-10T04:27:51.362619753Z"
created: "2023-08-18T06:42:36.53934468Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.1
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 579dca03320db10619eb4d2cba2668e3043216331d57962c204f30b2c9a81c43
name: cron-job
type: application
urls:
- https://chart.onechart.dev/cron-job-0.53.0.tgz
version: 0.53.0
- apiVersion: v2
created: "2023-08-18T06:42:36.538093792Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 3bc1523d94f9d860bef90ccb668b666f28674e1e2d00a49739cf864d049fa75d
name: cron-job
type: application
urls:
- https://chart.onechart.dev/cron-job-0.52.0.tgz
version: 0.52.0
- apiVersion: v2
created: "2023-08-18T06:42:36.536943603Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 1a2eae1c525f5fbeb0a57dfedac207ba66b61a78553a214ed2f8f4f6bb3a9db6
name: cron-job
type: application
urls:
- https://chart.onechart.dev/cron-job-0.51.0.tgz
version: 0.51.0
- apiVersion: v2
created: "2023-08-18T06:42:36.536381809Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 916c470a4c25c91174939e996e60d3f6757beaf116b5ed78c4f70e087bcae7b1
name: cron-job
type: application
urls:
- https://chart.onechart.dev/cron-job-0.50.0.tgz
version: 0.50.0
- apiVersion: v2
created: "2023-08-18T06:42:36.535828414Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 323fbeee6d6395e775d0b3be45b586f2e2167f9b65dcdb44e148089e7336efa6
name: cron-job
type: application
urls:
- https://chart.onechart.dev/cron-job-0.49.0.tgz
version: 0.49.0
- apiVersion: v2
created: "2023-08-18T06:42:36.535281619Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: d51d427970130e9a44b64a54c88633ec437a96c0654f5917e940735be3ea217f
name: cron-job
type: application
urls:
- https://chart.onechart.dev/cron-job-0.48.0.tgz
version: 0.48.0
- apiVersion: v2
created: "2023-08-18T06:42:36.534719725Z"
dependencies:
- name: common
repository: file://../common
@@ -16,7 +100,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.47.0.tgz
version: 0.47.0
- apiVersion: v2
created: "2023-04-10T04:27:51.361979541Z"
created: "2023-08-18T06:42:36.53418223Z"
dependencies:
- name: common
repository: file://../common
@@ -30,7 +114,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.46.0.tgz
version: 0.46.0
- apiVersion: v2
created: "2023-04-10T04:27:51.36133083Z"
created: "2023-08-18T06:42:36.533630636Z"
dependencies:
- name: common
repository: file://../common
@@ -44,7 +128,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.45.0.tgz
version: 0.45.0
- apiVersion: v2
created: "2023-04-10T04:27:51.360675118Z"
created: "2023-08-18T06:42:36.533025441Z"
dependencies:
- name: common
repository: file://../common
@@ -58,7 +142,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.44.0.tgz
version: 0.44.0
- apiVersion: v2
created: "2023-04-10T04:27:51.360069607Z"
created: "2023-08-18T06:42:36.532434947Z"
dependencies:
- name: common
repository: file://../common
@@ -72,7 +156,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.43.0.tgz
version: 0.43.0
- apiVersion: v2
created: "2023-04-10T04:27:51.359449196Z"
created: "2023-08-18T06:42:36.531868453Z"
dependencies:
- name: common
repository: file://../common
@@ -86,7 +170,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.42.0.tgz
version: 0.42.0
- apiVersion: v2
created: "2023-04-10T04:27:51.358805585Z"
created: "2023-08-18T06:42:36.531316458Z"
dependencies:
- name: common
repository: file://../common
@@ -100,7 +184,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.41.0.tgz
version: 0.41.0
- apiVersion: v2
created: "2023-04-10T04:27:51.358141673Z"
created: "2023-08-18T06:42:36.530760664Z"
dependencies:
- name: common
repository: file://../common
@@ -114,7 +198,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.40.0.tgz
version: 0.40.0
- apiVersion: v2
created: "2023-04-10T04:27:51.348843208Z"
created: "2023-08-18T06:42:36.53015637Z"
dependencies:
- name: common
repository: file://../common
@@ -128,7 +212,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.39.0.tgz
version: 0.39.0
- apiVersion: v2
created: "2023-04-10T04:27:51.348239097Z"
created: "2023-08-18T06:42:36.517451294Z"
dependencies:
- name: common
repository: file://../common
@@ -142,7 +226,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.38.0.tgz
version: 0.38.0
- apiVersion: v2
created: "2023-04-10T04:27:51.347631687Z"
created: "2023-08-18T06:42:36.516919599Z"
dependencies:
- name: common
repository: file://../common
@@ -156,7 +240,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.37.0.tgz
version: 0.37.0
- apiVersion: v2
created: "2023-04-10T04:27:51.346417265Z"
created: "2023-08-18T06:42:36.516350505Z"
dependencies:
- name: common
repository: file://../common
@@ -170,7 +254,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.36.0.tgz
version: 0.36.0
- apiVersion: v2
created: "2023-04-10T04:27:51.345771853Z"
created: "2023-08-18T06:42:36.51582311Z"
dependencies:
- name: common
repository: file://../common
@@ -184,7 +268,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.35.0.tgz
version: 0.35.0
- apiVersion: v2
created: "2023-04-10T04:27:51.345137042Z"
created: "2023-08-18T06:42:36.515267516Z"
dependencies:
- name: common
repository: file://../common
@@ -198,7 +282,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.34.0.tgz
version: 0.34.0
- apiVersion: v2
created: "2023-04-10T04:27:51.34444983Z"
created: "2023-08-18T06:42:36.514728221Z"
dependencies:
- name: common
repository: file://../common
@@ -212,7 +296,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.33.0.tgz
version: 0.33.0
- apiVersion: v2
created: "2023-04-10T04:27:51.343853619Z"
created: "2023-08-18T06:42:36.514159926Z"
dependencies:
- name: common
repository: file://../common
@@ -226,7 +310,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.32.0.tgz
version: 0.32.0
- apiVersion: v2
created: "2023-04-10T04:27:51.343210408Z"
created: "2023-08-18T06:42:36.513612132Z"
dependencies:
- name: common
repository: file://../common
@@ -240,7 +324,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.2.2.tgz
version: 0.2.2
- apiVersion: v2
created: "2023-04-10T04:27:51.342610497Z"
created: "2023-08-18T06:42:36.512853839Z"
dependencies:
- name: common
repository: file://../common
@@ -254,7 +338,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.2.1.tgz
version: 0.2.1
- apiVersion: v2
created: "2023-04-10T04:27:51.342052787Z"
created: "2023-08-18T06:42:36.512241145Z"
dependencies:
- name: common
repository: file://../common
@@ -268,7 +352,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
created: "2023-04-10T04:27:51.341445477Z"
created: "2023-08-18T06:42:36.511671751Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 02a23d8b4177290a518ee5de6a5e1f557f7409f94b2e04f23fedea193464188f
@@ -278,7 +362,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
created: "2023-04-10T04:27:51.341146071Z"
created: "2023-08-18T06:42:36.511373154Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: afab9ba533a4686827b54b0dad64f5bbf76f7fbc075e35fb1034689db9ab9dda
@@ -288,7 +372,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
created: "2023-04-10T04:27:51.340818565Z"
created: "2023-08-18T06:42:36.511066257Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 01f9fa40c1c4085d7688474ab00c9e9d21bd1d0793db6b75f2edda0e18456282
@@ -299,16 +383,16 @@ entries:
version: 0.1.0
namespaces:
- apiVersion: v2
created: "2023-04-10T04:27:51.363892875Z"
created: "2023-08-18T06:42:36.540654967Z"
description: Chart to create namespaces and their defaults
digest: 164b1fbd97aae574616e5de3f751aad816fbc87e2224533ea3203a69af6130a0
digest: f48c651b30c53ce97519b8ed204351c6a6a463061722bec3189a45befbb6990e
name: namespaces
type: application
urls:
- https://chart.onechart.dev/namespaces-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
created: "2023-04-10T04:27:51.363686272Z"
created: "2023-08-18T06:42:36.540410869Z"
description: Chart to create namespaces and their defaults
digest: a8e28dab9dc1a0044e75fbf8dd6d89c760c6fe9caa76bf16076cf5ecb311e808
name: namespaces
@@ -317,7 +401,7 @@ entries:
- https://chart.onechart.dev/namespaces-0.2.1.tgz
version: 0.2.1
- apiVersion: v2
created: "2023-04-10T04:27:51.363278464Z"
created: "2023-08-18T06:42:36.539985773Z"
description: Chart to create namespaces and their defaults
digest: 9539bfd2fde6d8f2b36ffec99c8a3a3eb7887462e98ee740b0ae0ea2b16b96b6
name: namespaces
@@ -326,7 +410,7 @@ entries:
- https://chart.onechart.dev/namespaces-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
created: "2023-04-10T04:27:51.362856357Z"
created: "2023-08-18T06:42:36.539589077Z"
description: Chart to create namespaces and their defaults
digest: 88b06d78a9d1bda6f2ee15b1fad7f25399ac25c2320fb9a8dfa1a4fd14afdf6e
name: namespaces
@@ -336,7 +420,91 @@ entries:
version: 0.1.0
onechart:
- apiVersion: v2
created: "2023-04-10T04:27:51.408436067Z"
created: "2023-08-18T06:42:36.583987142Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.1
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 33219acbe5777d149e6c53ae26164d8e85e16a9525c21ba940d2357c4da5daa7
name: onechart
type: application
urls:
- https://chart.onechart.dev/onechart-0.53.0.tgz
version: 0.53.0
- apiVersion: v2
created: "2023-08-18T06:42:36.582711355Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 430fcb18d8468138f8581da4733fc72d84588c433d33e51191ad5f80dd08c7da
name: onechart
type: application
urls:
- https://chart.onechart.dev/onechart-0.52.0.tgz
version: 0.52.0
- apiVersion: v2
created: "2023-08-18T06:42:36.581853363Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: eeaaf5fdbcaa6ecf1525eb7bede148edd97ad3f3399f7ef32c3a00ee7ad23f57
name: onechart
type: application
urls:
- https://chart.onechart.dev/onechart-0.51.0.tgz
version: 0.51.0
- apiVersion: v2
created: "2023-08-18T06:42:36.580975572Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 149a926c740b20dd02be7f0d923b06d6e3a82b24b46e8c172e17306fcd6bab1d
name: onechart
type: application
urls:
- https://chart.onechart.dev/onechart-0.50.0.tgz
version: 0.50.0
- apiVersion: v2
created: "2023-08-18T06:42:36.579552985Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 3be6db67993c86f83d53ddc3eedacdce5c7d5711a176ccab69f4ce621c38391d
name: onechart
type: application
urls:
- https://chart.onechart.dev/onechart-0.49.0.tgz
version: 0.49.0
- apiVersion: v2
created: "2023-08-18T06:42:36.578702594Z"
dependencies:
- name: common
repository: file://../common
version: 0.3.0
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: ffb12c0e3668a191ed2a2f5b9c1ae9af3d25bc8c0253d6cd38e8c8a4ad06feb8
name: onechart
type: application
urls:
- https://chart.onechart.dev/onechart-0.48.0.tgz
version: 0.48.0
- apiVersion: v2
created: "2023-08-18T06:42:36.577824202Z"
dependencies:
- name: common
repository: file://../common
@@ -350,7 +518,7 @@ entries:
- https://chart.onechart.dev/onechart-0.47.0.tgz
version: 0.47.0
- apiVersion: v2
created: "2023-04-10T04:27:51.407535651Z"
created: "2023-08-18T06:42:36.576971811Z"
dependencies:
- name: common
repository: file://../common
@@ -364,7 +532,7 @@ entries:
- https://chart.onechart.dev/onechart-0.46.0.tgz
version: 0.46.0
- apiVersion: v2
created: "2023-04-10T04:27:51.406570034Z"
created: "2023-08-18T06:42:36.576091419Z"
dependencies:
- name: common
repository: file://../common
@@ -378,7 +546,7 @@ entries:
- https://chart.onechart.dev/onechart-0.45.0.tgz
version: 0.45.0
- apiVersion: v2
created: "2023-04-10T04:27:51.405466514Z"
created: "2023-08-18T06:42:36.574886831Z"
dependencies:
- name: common
repository: file://../common
@@ -392,7 +560,7 @@ entries:
- https://chart.onechart.dev/onechart-0.44.0.tgz
version: 0.44.0
- apiVersion: v2
created: "2023-04-10T04:27:51.4046837Z"
created: "2023-08-18T06:42:36.573787142Z"
dependencies:
- name: common
repository: file://../common
@@ -406,7 +574,7 @@ entries:
- https://chart.onechart.dev/onechart-0.43.0.tgz
version: 0.43.0
- apiVersion: v2
created: "2023-04-10T04:27:51.403896286Z"
created: "2023-08-18T06:42:36.572645453Z"
dependencies:
- name: common
repository: file://../common
@@ -420,7 +588,7 @@ entries:
- https://chart.onechart.dev/onechart-0.42.0.tgz
version: 0.42.0
- apiVersion: v2
created: "2023-04-10T04:27:51.403067571Z"
created: "2023-08-18T06:42:36.571837161Z"
dependencies:
- name: common
repository: file://../common
@@ -434,7 +602,7 @@ entries:
- https://chart.onechart.dev/onechart-0.41.0.tgz
version: 0.41.0
- apiVersion: v2
created: "2023-04-10T04:27:51.401388341Z"
created: "2023-08-18T06:42:36.571049369Z"
dependencies:
- name: common
repository: file://../common
@@ -448,7 +616,7 @@ entries:
- https://chart.onechart.dev/onechart-0.40.0.tgz
version: 0.40.0
- apiVersion: v2
created: "2023-04-10T04:27:51.399722612Z"
created: "2023-08-18T06:42:36.570010179Z"
dependencies:
- name: common
repository: file://../common
@@ -462,7 +630,7 @@ entries:
- https://chart.onechart.dev/onechart-0.39.0.tgz
version: 0.39.0
- apiVersion: v2
created: "2023-04-10T04:27:51.398816896Z"
created: "2023-08-18T06:42:36.569240087Z"
dependencies:
- name: common
repository: file://../common
@@ -476,7 +644,7 @@ entries:
- https://chart.onechart.dev/onechart-0.38.0.tgz
version: 0.38.0
- apiVersion: v2
created: "2023-04-10T04:27:51.397887279Z"
created: "2023-08-18T06:42:36.568448894Z"
dependencies:
- name: common
repository: file://../common
@@ -490,7 +658,7 @@ entries:
- https://chart.onechart.dev/onechart-0.37.0.tgz
version: 0.37.0
- apiVersion: v2
created: "2023-04-10T04:27:51.396560956Z"
created: "2023-08-18T06:42:36.567686202Z"
dependencies:
- name: common
repository: file://../common
@@ -504,7 +672,7 @@ entries:
- https://chart.onechart.dev/onechart-0.36.0.tgz
version: 0.36.0
- apiVersion: v2
created: "2023-04-10T04:27:51.395588938Z"
created: "2023-08-18T06:42:36.566916009Z"
dependencies:
- name: common
repository: file://../common
@@ -518,7 +686,7 @@ entries:
- https://chart.onechart.dev/onechart-0.35.0.tgz
version: 0.35.0
- apiVersion: v2
created: "2023-04-10T04:27:51.394748024Z"
created: "2023-08-18T06:42:36.566131417Z"
dependencies:
- name: common
repository: file://../common
@@ -532,7 +700,7 @@ entries:
- https://chart.onechart.dev/onechart-0.34.0.tgz
version: 0.34.0
- apiVersion: v2
created: "2023-04-10T04:27:51.393920309Z"
created: "2023-08-18T06:42:36.564996528Z"
dependencies:
- name: common
repository: file://../common
@@ -546,7 +714,7 @@ entries:
- https://chart.onechart.dev/onechart-0.33.0.tgz
version: 0.33.0
- apiVersion: v2
created: "2023-04-10T04:27:51.393069194Z"
created: "2023-08-18T06:42:36.563946638Z"
dependencies:
- name: common
repository: file://../common
@@ -560,7 +728,7 @@ entries:
- https://chart.onechart.dev/onechart-0.32.0.tgz
version: 0.32.0
- apiVersion: v2
created: "2023-04-10T04:27:51.392193578Z"
created: "2023-08-18T06:42:36.562950048Z"
dependencies:
- name: common
repository: file://../common
@@ -574,7 +742,7 @@ entries:
- https://chart.onechart.dev/onechart-0.31.0.tgz
version: 0.31.0
- apiVersion: v2
created: "2023-04-10T04:27:51.391327563Z"
created: "2023-08-18T06:42:36.562232355Z"
dependencies:
- name: common
repository: file://../common
@@ -588,7 +756,7 @@ entries:
- https://chart.onechart.dev/onechart-0.30.0.tgz
version: 0.30.0
- apiVersion: v2
created: "2023-04-10T04:27:51.387953703Z"
created: "2023-08-18T06:42:36.560796769Z"
dependencies:
- name: common
repository: file://../common
@@ -602,7 +770,7 @@ entries:
- https://chart.onechart.dev/onechart-0.29.0.tgz
version: 0.29.0
- apiVersion: v2
created: "2023-04-10T04:27:51.386872784Z"
created: "2023-08-18T06:42:36.560074576Z"
dependencies:
- name: common
repository: file://../common
@@ -616,7 +784,7 @@ entries:
- https://chart.onechart.dev/onechart-0.28.0.tgz
version: 0.28.0
- apiVersion: v2
created: "2023-04-10T04:27:51.386051669Z"
created: "2023-08-18T06:42:36.559374683Z"
dependencies:
- name: common
repository: file://../common
@@ -630,7 +798,7 @@ entries:
- https://chart.onechart.dev/onechart-0.27.0.tgz
version: 0.27.0
- apiVersion: v2
created: "2023-04-10T04:27:51.385134553Z"
created: "2023-08-18T06:42:36.55866729Z"
dependencies:
- name: common
repository: file://../common
@@ -644,7 +812,7 @@ entries:
- https://chart.onechart.dev/onechart-0.27.0-rc3.tgz
version: 0.27.0-rc3
- apiVersion: v2
created: "2023-04-10T04:27:51.384376839Z"
created: "2023-08-18T06:42:36.557951497Z"
dependencies:
- name: common
repository: file://../common
@@ -658,7 +826,7 @@ entries:
- https://chart.onechart.dev/onechart-0.27.0-rc2.tgz
version: 0.27.0-rc2
- apiVersion: v2
created: "2023-04-10T04:27:51.383705627Z"
created: "2023-08-18T06:42:36.557216204Z"
dependencies:
- name: common
repository: file://../common
@@ -672,7 +840,7 @@ entries:
- https://chart.onechart.dev/onechart-0.27.0-rc1.tgz
version: 0.27.0-rc1
- apiVersion: v2
created: "2023-04-10T04:27:51.382924213Z"
created: "2023-08-18T06:42:36.556108915Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 3563a30dba0b6a9c7a1a3df358ca5c41e952882fd2f1bbe33c8103536870d651
@@ -682,7 +850,7 @@ entries:
- https://chart.onechart.dev/onechart-0.26.0.tgz
version: 0.26.0
- apiVersion: v2
created: "2023-04-10T04:27:51.382282902Z"
created: "2023-08-18T06:42:36.555376522Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: efcbabde8193f1c3ecb34e4ede8f5efead1f77d8096180f4e8640ff94df07461
@@ -692,7 +860,7 @@ entries:
- https://chart.onechart.dev/onechart-0.25.0.tgz
version: 0.25.0
- apiVersion: v2
created: "2023-04-10T04:27:51.38162719Z"
created: "2023-08-18T06:42:36.554380832Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 59f1389268efb3d970f84cae968e3ecbde57015df1201411f9f46becb4b09844
@@ -702,7 +870,7 @@ entries:
- https://chart.onechart.dev/onechart-0.24.1.tgz
version: 0.24.1
- apiVersion: v2
created: "2023-04-10T04:27:51.380801476Z"
created: "2023-08-18T06:42:36.553844337Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 74b6fdf49a9fa5327fc0639f1d97f0cf553f89030c01379f3c91a5adb6f8a0f1
@@ -712,7 +880,7 @@ entries:
- https://chart.onechart.dev/onechart-0.24.0.tgz
version: 0.24.0
- apiVersion: v2
created: "2023-04-10T04:27:51.380229166Z"
created: "2023-08-18T06:42:36.553298643Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: f8e444c2d5c5a4e73b76a971effda5246d3200427be45c2fb546bc990f197ecc
@@ -722,7 +890,7 @@ entries:
- https://chart.onechart.dev/onechart-0.23.0.tgz
version: 0.23.0
- apiVersion: v2
created: "2023-04-10T04:27:51.379607955Z"
created: "2023-08-18T06:42:36.552781248Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: dfad2865c3eb54f0366300ef63b8ba1863ca69aa27e5ca5d3512c0d799d004d3
@@ -732,7 +900,7 @@ entries:
- https://chart.onechart.dev/onechart-0.22.0.tgz
version: 0.22.0
- apiVersion: v2
created: "2023-04-10T04:27:51.378957143Z"
created: "2023-08-18T06:42:36.552241053Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 1b837cdefcb7025c40bffdd620a0f116df5ccb9023ac6a8c538bd8e77b3eb80a
@@ -742,7 +910,7 @@ entries:
- https://chart.onechart.dev/onechart-0.21.0.tgz
version: 0.21.0
- apiVersion: v2
created: "2023-04-10T04:27:51.378344432Z"
created: "2023-08-18T06:42:36.551720558Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: a4f5741b46b89cd4328fbd96f96d85d53bae64b526730de5097ec33639c9c54f
@@ -752,7 +920,7 @@ entries:
- https://chart.onechart.dev/onechart-0.20.0.tgz
version: 0.20.0
- apiVersion: v2
created: "2023-04-10T04:27:51.376879306Z"
created: "2023-08-18T06:42:36.550931066Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 59dd16db4f8519d3922da349aabcc2daec8385fc8a98d0f3163a84b98cc12f61
@@ -762,7 +930,7 @@ entries:
- https://chart.onechart.dev/onechart-0.19.0.tgz
version: 0.19.0
- apiVersion: v2
created: "2023-04-10T04:27:51.376049391Z"
created: "2023-08-18T06:42:36.550388171Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 74c4c6a448e66929dfcafc5a641b5bdbaa8af6832c6065b02ce756dfeb3fc438
@@ -772,7 +940,7 @@ entries:
- https://chart.onechart.dev/onechart-0.18.0.tgz
version: 0.18.0
- apiVersion: v2
created: "2023-04-10T04:27:51.374925071Z"
created: "2023-08-18T06:42:36.549852277Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: e1ba0bb54c3a3e13b661bb608839c7013d12e24d0437581ebfdbf5ce4a283d4d
@@ -782,7 +950,7 @@ entries:
- https://chart.onechart.dev/onechart-0.17.0.tgz
version: 0.17.0
- apiVersion: v2
created: "2023-04-10T04:27:51.374379562Z"
created: "2023-08-18T06:42:36.549307782Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 596350a4977b305e4d5aae16dd8dcca62a17ea5cec9f444aacd82a12d6b3dcfe
@@ -792,7 +960,7 @@ entries:
- https://chart.onechart.dev/onechart-0.16.0.tgz
version: 0.16.0
- apiVersion: v2
created: "2023-04-10T04:27:51.373804651Z"
created: "2023-08-18T06:42:36.548751487Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: d1a5a9e9bff274f32f6849bc58b201c7886240b94dd6b70b5cf3411d9ad03393
@@ -802,7 +970,7 @@ entries:
- https://chart.onechart.dev/onechart-0.15.3.tgz
version: 0.15.3
- apiVersion: v2
created: "2023-04-10T04:27:51.373216241Z"
created: "2023-08-18T06:42:36.548147993Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 626410479f67bbbfa7e7fc94f6dfd8aae50a2bdf9fc72ec395c835dacbd5dbe7
@@ -812,7 +980,7 @@ entries:
- https://chart.onechart.dev/onechart-0.15.2.tgz
version: 0.15.2
- apiVersion: v2
created: "2023-04-10T04:27:51.372650031Z"
created: "2023-08-18T06:42:36.547113203Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: e6d237aff4abedee6deb5ba57e8183c7598b255d40afdd04c03f73014f706aa3
@@ -822,7 +990,7 @@ entries:
- https://chart.onechart.dev/onechart-0.15.1.tgz
version: 0.15.1
- apiVersion: v2
created: "2023-04-10T04:27:51.372117622Z"
created: "2023-08-18T06:42:36.546056314Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: d45fc4cc214bc94e4c2c10d6432562d7e65ee5e55226f677aafdfe101d7f6e7f
@@ -832,7 +1000,7 @@ entries:
- https://chart.onechart.dev/onechart-0.15.0.tgz
version: 0.15.0
- apiVersion: v2
created: "2023-04-10T04:27:51.371584212Z"
created: "2023-08-18T06:42:36.545541019Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 7e61a72a3400e09c44539094558a2084621239015132d20551c4593be3b5bede
@@ -842,7 +1010,7 @@ entries:
- https://chart.onechart.dev/onechart-0.14.0.tgz
version: 0.14.0
- apiVersion: v2
created: "2023-04-10T04:27:51.371001802Z"
created: "2023-08-18T06:42:36.545032324Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 743a9b552233770713f0c22edbe8cf4f55c890a59106e1f33055c1cb31be5a27
@@ -852,7 +1020,7 @@ entries:
- https://chart.onechart.dev/onechart-0.13.2.tgz
version: 0.13.2
- apiVersion: v2
created: "2023-04-10T04:27:51.370455392Z"
created: "2023-08-18T06:42:36.544532029Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 02bf9537e13cea0da9dc3bfbcdd45d51576354cb18b7c1c7cec76f829e20105f
@@ -862,7 +1030,7 @@ entries:
- https://chart.onechart.dev/onechart-0.13.1.tgz
version: 0.13.1
- apiVersion: v2
created: "2023-04-10T04:27:51.369917482Z"
created: "2023-08-18T06:42:36.544044933Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 5183ed825c4f255ca5a4f0ffeb8c92bbad3c43b42fc1b798f1f1fc6de2a30bef
@@ -872,7 +1040,7 @@ entries:
- https://chart.onechart.dev/onechart-0.13.0.tgz
version: 0.13.0
- apiVersion: v2
created: "2023-04-10T04:27:51.368840563Z"
created: "2023-08-18T06:42:36.543572238Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: e131a502d12a6b074453f1da8d0d1ca7145e80a025f31252b24cc3d62375a4c1
@@ -882,7 +1050,7 @@ entries:
- https://chart.onechart.dev/onechart-0.12.2.tgz
version: 0.12.2
- apiVersion: v2
created: "2023-04-10T04:27:51.368307954Z"
created: "2023-08-18T06:42:36.543129342Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 8e1a25d18a546c4ec5e970991301a08e38495a964a8f6e0a2ee97f92c41c9691
@@ -892,7 +1060,7 @@ entries:
- https://chart.onechart.dev/onechart-0.12.1.tgz
version: 0.12.1
- apiVersion: v2
created: "2023-04-10T04:27:51.367757344Z"
created: "2023-08-18T06:42:36.542683847Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: f38a6f2fbf5c847b00a9140ecd004e0bf667d859aa83d8dac4a2d0eecd1a361f
@@ -902,7 +1070,7 @@ entries:
- https://chart.onechart.dev/onechart-0.12.0.tgz
version: 0.12.0
- apiVersion: v2
created: "2023-04-10T04:27:51.366231517Z"
created: "2023-08-18T06:42:36.542243951Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 75c16f84b5e99aad5aa7203f5c1ce2a9589d85b89afec4e161a2e0344a522c17
@@ -912,7 +1080,7 @@ entries:
- https://chart.onechart.dev/onechart-0.11.0.tgz
version: 0.11.0
- apiVersion: v2
created: "2023-04-10T04:27:51.365599906Z"
created: "2023-08-18T06:42:36.541817655Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 40f1166e858d35cb237debd1390187884641b0e8c29a80aaa195b66b0ee73516
@@ -922,7 +1090,7 @@ entries:
- https://chart.onechart.dev/onechart-0.10.0.tgz
version: 0.10.0
- apiVersion: v2
created: "2023-04-10T04:27:51.413740961Z"
created: "2023-08-18T06:42:36.587476008Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: cb42b08b463b401f6718bba7c171ee55c173021c5101ea1b3068ef3899a6e164
@@ -932,7 +1100,7 @@ entries:
- https://chart.onechart.dev/onechart-0.9.0.tgz
version: 0.9.0
- apiVersion: v2
created: "2023-04-10T04:27:51.412255335Z"
created: "2023-08-18T06:42:36.587075312Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: ce046d209a9e8fa07766712492cc896451473fafca129dbc9c675107d0e39c52
@@ -942,7 +1110,7 @@ entries:
- https://chart.onechart.dev/onechart-0.8.2.tgz
version: 0.8.2
- apiVersion: v2
created: "2023-04-10T04:27:51.411722025Z"
created: "2023-08-18T06:42:36.586715615Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 422d7e6ea1bed530d4cd5e23417b229772a6fe2e835828ca282a3e6c9b646b2b
@@ -952,7 +1120,7 @@ entries:
- https://chart.onechart.dev/onechart-0.8.1.tgz
version: 0.8.1
- apiVersion: v2
created: "2023-04-10T04:27:51.411136115Z"
created: "2023-08-18T06:42:36.586353619Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 8001bd02fc90ad66da7941c136ee8d0e665ea90b6e1ac27d82b048f2b12b3964
@@ -962,7 +1130,7 @@ entries:
- https://chart.onechart.dev/onechart-0.8.0.tgz
version: 0.8.0
- apiVersion: v2
created: "2023-04-10T04:27:51.410479803Z"
created: "2023-08-18T06:42:36.585975823Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: d1454b430eb7131d0d450f7c0a8a6698278893c61e03d48649a8112dfcf42b72
@@ -972,7 +1140,7 @@ entries:
- https://chart.onechart.dev/onechart-0.7.1.tgz
version: 0.7.1
- apiVersion: v2
created: "2023-04-10T04:27:51.410101396Z"
created: "2023-08-18T06:42:36.585595526Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 4bf90835f287917671ec40b5b395da9332cf18e70f248d250f8d5a72360dcb4e
@@ -982,7 +1150,7 @@ entries:
- https://chart.onechart.dev/onechart-0.7.0.tgz
version: 0.7.0
- apiVersion: v2
created: "2023-04-10T04:27:51.40974519Z"
created: "2023-08-18T06:42:36.584847834Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 0cade489fc74a040f5e7f71d01c6fa00d3f68b4752a4d8234ccf2c1504b4c0a1
@@ -992,7 +1160,7 @@ entries:
- https://chart.onechart.dev/onechart-0.6.1.tgz
version: 0.6.1
- apiVersion: v2
created: "2023-04-10T04:27:51.409409584Z"
created: "2023-08-18T06:42:36.584420738Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: d607820a7e104eaaa88c153c1f2f7f409ef4c612ad747caeb3a671cf3fce03d4
@@ -1002,7 +1170,7 @@ entries:
- https://chart.onechart.dev/onechart-0.6.0.tgz
version: 0.6.0
- apiVersion: v2
created: "2023-04-10T04:27:51.409076678Z"
created: "2023-08-18T06:42:36.58010608Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: ddf7cf87402095d62855898744b805115fdf86c4b295e0a4def0c50408fd9138
@@ -1012,7 +1180,7 @@ entries:
- https://chart.onechart.dev/onechart-0.5.1.tgz
version: 0.5.1
- apiVersion: v2
created: "2023-04-10T04:27:51.408761572Z"
created: "2023-08-18T06:42:36.579832883Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: adf3c2cf3a27e58ec75620599e0e1c2031a7410a061a590317beeff6d8a9ad69
@@ -1022,7 +1190,7 @@ entries:
- https://chart.onechart.dev/onechart-0.5.0.tgz
version: 0.5.0
- apiVersion: v2
created: "2023-04-10T04:27:51.400027817Z"
created: "2023-08-18T06:42:36.570281376Z"
description: One chart to rule them all. A generic Helm chart for your application
deployments. Because no-one can remember the Kubernetes yaml syntax.
digest: 8dab33263c4e632aeb4656c666871440b589497b70e76a1d6c3a5e3db1a30bba
@@ -1032,7 +1200,7 @@ entries:
- https://chart.onechart.dev/onechart-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
created: "2023-04-10T04:27:51.390410146Z"
created: "2023-08-18T06:42:36.561507962Z"
description: A generic Helm chart for your application deployments
digest: fbaf6139e0ef8ad9a87cc1e41a97c7d25fdcf7ea17fa6364952f1a851a87480a
name: onechart
@@ -1041,7 +1209,7 @@ entries:
- https://chart.onechart.dev/onechart-0.3.2.tgz
version: 0.3.2
- apiVersion: v2
created: "2023-04-10T04:27:51.389431429Z"
created: "2023-08-18T06:42:36.561273265Z"
description: A generic Helm chart for your application deployments
digest: bd6f5b1865ab9b05fc6925c163ab8045235bd2723dba31f09d5083d24322d1f8
name: onechart
@@ -1050,7 +1218,7 @@ entries:
- https://chart.onechart.dev/onechart-0.3.1.tgz
version: 0.3.1
- apiVersion: v2
created: "2023-04-10T04:27:51.388511913Z"
created: "2023-08-18T06:42:36.561038267Z"
description: A generic Helm chart for your application deployments
digest: c79cef21eceab948144a289298cdf1e20e77a0782a883d7d65f9e709ccbbc271
name: onechart
@@ -1059,7 +1227,7 @@ entries:
- https://chart.onechart.dev/onechart-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
created: "2023-04-10T04:27:51.377514817Z"
created: "2023-08-18T06:42:36.551189263Z"
description: A generic Helm chart for your application deployments
digest: dd814ac5d08d5e6163a1b769df6803f5cb0f09d906045086dfcc5be522bb1ec3
name: onechart
@@ -1068,7 +1236,7 @@ entries:
- https://chart.onechart.dev/onechart-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
created: "2023-04-10T04:27:51.364923994Z"
created: "2023-08-18T06:42:36.541412159Z"
description: A generic Helm chart for your application deployments
digest: e46062df8053840cbfbba26c0a66a843a79f15a0b43a145ed019327513bd5098
name: onechart
@@ -1077,7 +1245,7 @@ entries:
- https://chart.onechart.dev/onechart-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
created: "2023-04-10T04:27:51.364418485Z"
created: "2023-08-18T06:42:36.541172662Z"
description: A generic Helm chart for your application deployments
digest: a7bbc8b7dcc008e89156cd1830282b7d39c0592e82ccdcefb77a25a42eca2a3d
name: onechart
@@ -1086,7 +1254,7 @@ entries:
- https://chart.onechart.dev/onechart-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
created: "2023-04-10T04:27:51.36415738Z"
created: "2023-08-18T06:42:36.540915164Z"
description: A generic Helm chart for your application deployments
digest: 1ed8c0645abdae6c950526e9c5410dc056847a11700dc7def5f1c55eb7de0cd4
name: onechart
@@ -1096,12 +1264,30 @@ entries:
version: 0.1.0
static-site:
- apiVersion: v2
created: "2023-04-10T04:27:51.414299771Z"
created: "2023-08-18T06:42:36.588848494Z"
description: Chart to build and deploy static sites
digest: 1256ec8087cdf44dfd7158d1e98d7321f7e44eabfa44d74f9894399022135992
digest: e9c0c056470f40fc97119ca4c4a9b1b0c84f19c98792fee0b55c91cb57f93671
name: static-site
type: application
urls:
- https://chart.onechart.dev/static-site-0.53.0.tgz
version: 0.53.0
- apiVersion: v2
created: "2023-08-18T06:42:36.588378799Z"
description: Chart to build and deploy static sites
digest: ef72c7cc95bbf6c123bb2f6a80ced12a3e6f09c866b2ff9057caa6692e16c2e1
name: static-site
type: application
urls:
- https://chart.onechart.dev/static-site-0.52.0.tgz
version: 0.52.0
- apiVersion: v2
created: "2023-08-18T06:42:36.587932503Z"
description: Chart to build and deploy static sites
digest: d26cef52a3aace6285173de55981375086aec3b4b52027bc2e42d16632190497
name: static-site
type: application
urls:
- https://chart.onechart.dev/static-site-0.1.0.tgz
version: 0.1.0
generated: "2023-04-10T04:27:51.340336057Z"
generated: "2023-08-18T06:42:36.509876568Z"
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+5 -3
View File
@@ -5,8 +5,6 @@ ingress:
gitRepository: github.com/laszlocph/demo-app
gitSha: xyz
vars:
MY_VAR: "value"
volumes:
- name: testing
@@ -15,4 +13,8 @@ volumes:
path: /deleteme
- name: empty
path: /deleteme2
emptyDir: true
emptyDir: true
vars:
var1: value1
var2: value2