Compare commits

...

22 Commits

Author SHA1 Message Date
Laszlo Fogas 858f5e31e0 Changed default build settings 2023-08-21 16:57:30 +02:00
Laszlo Fogas cb00d364d6 Update values.yaml 2023-08-21 16:55:52 +02:00
Github Action b3b33a4b18 The next release version will be 0.55.0 2023-08-21 14:41:32 +00:00
Github Action a5933c0967 Publishing 0.54.0 to the Helm repository 2023-08-21 14:41:31 +00:00
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
41 changed files with 332 additions and 183 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.3.0
digest: sha256:4f1fb49a840753587de0b15ccd8ae83f655fc8043d0a71a4cbec228365713b0d
generated: "2023-06-08T16:30:30.656437+02: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.50.0
version: 0.55.0
dependencies:
- name: common
version: 0.3.0
version: 0.3.1
repository: file://../common
Binary file not shown.
Binary file not shown.
+3 -3
View File
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: file://../common
version: 0.3.0
digest: sha256:4f1fb49a840753587de0b15ccd8ae83f655fc8043d0a71a4cbec228365713b0d
generated: "2023-06-08T16:30:30.052037+02: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.50.0
version: 0.55.0
dependencies:
- name: common
version: 0.3.0
version: 0.3.1
repository: file://../common
Binary file not shown.
Binary file not shown.
+7 -3
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 }}
+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
+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.55.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
}
+4 -23
View File
@@ -13,15 +13,6 @@ 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: {}
@@ -62,18 +53,8 @@ tolerations: []
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
gitCloneUrl: https://github.com/gimlet-io/reactjs-test-app.git
buildImage: "node:latest"
buildScript: |
# !/usr/bin/env bash
# pre -reqs
apt-get update && apt-get install -y wget
# Setting up Hugo
wget https://github.com/gohugoio/hugo/releases/download/v0.111.3/hugo_0.111.3_Linux-64bit.tar.gz &&
tar -xzf hugo_0.111.3_Linux-64bit.tar.gz &&
chmod +x hugo
./hugo
builtAssets: public/
npm install && npm run build
builtAssets: build/
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+268 -101
View File
@@ -2,7 +2,77 @@ apiVersion: v1
entries:
cron-job:
- apiVersion: v2
created: "2023-06-09T07:00:07.323645213Z"
created: "2023-08-21T14:41:31.038180001Z"
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: 79fc61af5f369303dff42cb40ec4ad34356608e63d250389317f875c3c1fed3f
name: cron-job
type: application
urls:
- https://chart.onechart.dev/cron-job-0.54.0.tgz
version: 0.54.0
- apiVersion: v2
created: "2023-08-21T14:41:31.037381398Z"
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-21T14:41:31.036630694Z"
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-21T14:41:31.035785591Z"
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-21T14:41:31.034802787Z"
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-21T14:41:31.034031484Z"
dependencies:
- name: common
repository: file://../common
@@ -16,7 +86,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.49.0.tgz
version: 0.49.0
- apiVersion: v2
created: "2023-06-09T07:00:07.322926404Z"
created: "2023-08-21T14:41:31.03319648Z"
dependencies:
- name: common
repository: file://../common
@@ -30,7 +100,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.48.0.tgz
version: 0.48.0
- apiVersion: v2
created: "2023-06-09T07:00:07.322226295Z"
created: "2023-08-21T14:41:31.032394977Z"
dependencies:
- name: common
repository: file://../common
@@ -44,7 +114,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.47.0.tgz
version: 0.47.0
- apiVersion: v2
created: "2023-06-09T07:00:07.321557687Z"
created: "2023-08-21T14:41:31.031631773Z"
dependencies:
- name: common
repository: file://../common
@@ -58,7 +128,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.46.0.tgz
version: 0.46.0
- apiVersion: v2
created: "2023-06-09T07:00:07.320261671Z"
created: "2023-08-21T14:41:31.03081397Z"
dependencies:
- name: common
repository: file://../common
@@ -72,7 +142,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.45.0.tgz
version: 0.45.0
- apiVersion: v2
created: "2023-06-09T07:00:07.319099056Z"
created: "2023-08-21T14:41:31.030022067Z"
dependencies:
- name: common
repository: file://../common
@@ -86,7 +156,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.44.0.tgz
version: 0.44.0
- apiVersion: v2
created: "2023-06-09T07:00:07.317712539Z"
created: "2023-08-21T14:41:31.029241063Z"
dependencies:
- name: common
repository: file://../common
@@ -100,7 +170,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.43.0.tgz
version: 0.43.0
- apiVersion: v2
created: "2023-06-09T07:00:07.317033531Z"
created: "2023-08-21T14:41:31.02841716Z"
dependencies:
- name: common
repository: file://../common
@@ -114,7 +184,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.42.0.tgz
version: 0.42.0
- apiVersion: v2
created: "2023-06-09T07:00:07.316366922Z"
created: "2023-08-21T14:41:31.02362414Z"
dependencies:
- name: common
repository: file://../common
@@ -128,7 +198,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.41.0.tgz
version: 0.41.0
- apiVersion: v2
created: "2023-06-09T07:00:07.315681514Z"
created: "2023-08-21T14:41:31.022698236Z"
dependencies:
- name: common
repository: file://../common
@@ -142,7 +212,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.40.0.tgz
version: 0.40.0
- apiVersion: v2
created: "2023-06-09T07:00:07.314912604Z"
created: "2023-08-21T14:41:31.021863332Z"
dependencies:
- name: common
repository: file://../common
@@ -156,7 +226,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.39.0.tgz
version: 0.39.0
- apiVersion: v2
created: "2023-06-09T07:00:07.314194095Z"
created: "2023-08-21T14:41:31.021092229Z"
dependencies:
- name: common
repository: file://../common
@@ -170,7 +240,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.38.0.tgz
version: 0.38.0
- apiVersion: v2
created: "2023-06-09T07:00:07.313450486Z"
created: "2023-08-21T14:41:31.020269926Z"
dependencies:
- name: common
repository: file://../common
@@ -184,7 +254,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.37.0.tgz
version: 0.37.0
- apiVersion: v2
created: "2023-06-09T07:00:07.312384573Z"
created: "2023-08-21T14:41:31.019367822Z"
dependencies:
- name: common
repository: file://../common
@@ -198,7 +268,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.36.0.tgz
version: 0.36.0
- apiVersion: v2
created: "2023-06-09T07:00:07.311547363Z"
created: "2023-08-21T14:41:31.018474218Z"
dependencies:
- name: common
repository: file://../common
@@ -212,7 +282,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.35.0.tgz
version: 0.35.0
- apiVersion: v2
created: "2023-06-09T07:00:07.310692652Z"
created: "2023-08-21T14:41:31.017744815Z"
dependencies:
- name: common
repository: file://../common
@@ -226,7 +296,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.34.0.tgz
version: 0.34.0
- apiVersion: v2
created: "2023-06-09T07:00:07.309855742Z"
created: "2023-08-21T14:41:31.016922712Z"
dependencies:
- name: common
repository: file://../common
@@ -240,7 +310,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.33.0.tgz
version: 0.33.0
- apiVersion: v2
created: "2023-06-09T07:00:07.309088132Z"
created: "2023-08-21T14:41:31.016038708Z"
dependencies:
- name: common
repository: file://../common
@@ -254,7 +324,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.32.0.tgz
version: 0.32.0
- apiVersion: v2
created: "2023-06-09T07:00:07.307456112Z"
created: "2023-08-21T14:41:31.015269305Z"
dependencies:
- name: common
repository: file://../common
@@ -268,7 +338,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.2.2.tgz
version: 0.2.2
- apiVersion: v2
created: "2023-06-09T07:00:07.305915693Z"
created: "2023-08-21T14:41:31.014322701Z"
dependencies:
- name: common
repository: file://../common
@@ -282,7 +352,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.2.1.tgz
version: 0.2.1
- apiVersion: v2
created: "2023-06-09T07:00:07.304396474Z"
created: "2023-08-21T14:41:31.013380297Z"
dependencies:
- name: common
repository: file://../common
@@ -296,7 +366,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
created: "2023-06-09T07:00:07.303597464Z"
created: "2023-08-21T14:41:31.011598889Z"
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
@@ -306,7 +376,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
created: "2023-06-09T07:00:07.302572751Z"
created: "2023-08-21T14:41:31.010419384Z"
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
@@ -316,7 +386,7 @@ entries:
- https://chart.onechart.dev/cron-job-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
created: "2023-06-09T07:00:07.302147946Z"
created: "2023-08-21T14:41:31.010061483Z"
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
@@ -327,16 +397,16 @@ entries:
version: 0.1.0
namespaces:
- apiVersion: v2
created: "2023-06-09T07:00:07.325005329Z"
created: "2023-08-21T14:41:31.040563111Z"
description: Chart to create namespaces and their defaults
digest: 4fb19f2d1225fa8e7aab1888a0b81b40faf0e3a76fb7a54ff191ca528aa68467
digest: af515b16f738404932720c13dd3cc54aabdf7f5c1d49085a135c3cd328685e56
name: namespaces
type: application
urls:
- https://chart.onechart.dev/namespaces-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
created: "2023-06-09T07:00:07.324774127Z"
created: "2023-08-21T14:41:31.040181909Z"
description: Chart to create namespaces and their defaults
digest: a8e28dab9dc1a0044e75fbf8dd6d89c760c6fe9caa76bf16076cf5ecb311e808
name: namespaces
@@ -345,7 +415,7 @@ entries:
- https://chart.onechart.dev/namespaces-0.2.1.tgz
version: 0.2.1
- apiVersion: v2
created: "2023-06-09T07:00:07.324346721Z"
created: "2023-08-21T14:41:31.039456306Z"
description: Chart to create namespaces and their defaults
digest: 9539bfd2fde6d8f2b36ffec99c8a3a3eb7887462e98ee740b0ae0ea2b16b96b6
name: namespaces
@@ -354,7 +424,7 @@ entries:
- https://chart.onechart.dev/namespaces-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
created: "2023-06-09T07:00:07.323918816Z"
created: "2023-08-21T14:41:31.038474702Z"
description: Chart to create namespaces and their defaults
digest: 88b06d78a9d1bda6f2ee15b1fad7f25399ac25c2320fb9a8dfa1a4fd14afdf6e
name: namespaces
@@ -364,7 +434,77 @@ entries:
version: 0.1.0
onechart:
- apiVersion: v2
created: "2023-06-09T07:00:07.379170101Z"
created: "2023-08-21T14:41:31.112167512Z"
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: 916d7108a03b784a7c9e878541921049b9e13ce841744328523d05e87ff36e24
name: onechart
type: application
urls:
- https://chart.onechart.dev/onechart-0.54.0.tgz
version: 0.54.0
- apiVersion: v2
created: "2023-08-21T14:41:31.110925707Z"
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-21T14:41:31.109531201Z"
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-21T14:41:31.105470284Z"
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-21T14:41:31.103437375Z"
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-21T14:41:31.100982465Z"
dependencies:
- name: common
repository: file://../common
@@ -378,7 +518,7 @@ entries:
- https://chart.onechart.dev/onechart-0.49.0.tgz
version: 0.49.0
- apiVersion: v2
created: "2023-06-09T07:00:07.377620781Z"
created: "2023-08-21T14:41:31.099696659Z"
dependencies:
- name: common
repository: file://../common
@@ -392,7 +532,7 @@ entries:
- https://chart.onechart.dev/onechart-0.48.0.tgz
version: 0.48.0
- apiVersion: v2
created: "2023-06-09T07:00:07.376473267Z"
created: "2023-08-21T14:41:31.098055753Z"
dependencies:
- name: common
repository: file://../common
@@ -406,7 +546,7 @@ entries:
- https://chart.onechart.dev/onechart-0.47.0.tgz
version: 0.47.0
- apiVersion: v2
created: "2023-06-09T07:00:07.375313453Z"
created: "2023-08-21T14:41:31.096784847Z"
dependencies:
- name: common
repository: file://../common
@@ -420,7 +560,7 @@ entries:
- https://chart.onechart.dev/onechart-0.46.0.tgz
version: 0.46.0
- apiVersion: v2
created: "2023-06-09T07:00:07.374224539Z"
created: "2023-08-21T14:41:31.095508442Z"
dependencies:
- name: common
repository: file://../common
@@ -434,7 +574,7 @@ entries:
- https://chart.onechart.dev/onechart-0.45.0.tgz
version: 0.45.0
- apiVersion: v2
created: "2023-06-09T07:00:07.373158226Z"
created: "2023-08-21T14:41:31.094090236Z"
dependencies:
- name: common
repository: file://../common
@@ -448,7 +588,7 @@ entries:
- https://chart.onechart.dev/onechart-0.44.0.tgz
version: 0.44.0
- apiVersion: v2
created: "2023-06-09T07:00:07.372011112Z"
created: "2023-08-21T14:41:31.092939131Z"
dependencies:
- name: common
repository: file://../common
@@ -462,7 +602,7 @@ entries:
- https://chart.onechart.dev/onechart-0.43.0.tgz
version: 0.43.0
- apiVersion: v2
created: "2023-06-09T07:00:07.370854897Z"
created: "2023-08-21T14:41:31.091791526Z"
dependencies:
- name: common
repository: file://../common
@@ -476,7 +616,7 @@ entries:
- https://chart.onechart.dev/onechart-0.42.0.tgz
version: 0.42.0
- apiVersion: v2
created: "2023-06-09T07:00:07.369732384Z"
created: "2023-08-21T14:41:31.090564621Z"
dependencies:
- name: common
repository: file://../common
@@ -490,7 +630,7 @@ entries:
- https://chart.onechart.dev/onechart-0.41.0.tgz
version: 0.41.0
- apiVersion: v2
created: "2023-06-09T07:00:07.367648058Z"
created: "2023-08-21T14:41:31.089320516Z"
dependencies:
- name: common
repository: file://../common
@@ -504,7 +644,7 @@ entries:
- https://chart.onechart.dev/onechart-0.40.0.tgz
version: 0.40.0
- apiVersion: v2
created: "2023-06-09T07:00:07.365603032Z"
created: "2023-08-21T14:41:31.086797605Z"
dependencies:
- name: common
repository: file://../common
@@ -518,7 +658,7 @@ entries:
- https://chart.onechart.dev/onechart-0.39.0.tgz
version: 0.39.0
- apiVersion: v2
created: "2023-06-09T07:00:07.363910411Z"
created: "2023-08-21T14:41:31.0854964Z"
dependencies:
- name: common
repository: file://../common
@@ -532,7 +672,7 @@ entries:
- https://chart.onechart.dev/onechart-0.38.0.tgz
version: 0.38.0
- apiVersion: v2
created: "2023-06-09T07:00:07.362771397Z"
created: "2023-08-21T14:41:31.084100694Z"
dependencies:
- name: common
repository: file://../common
@@ -546,7 +686,7 @@ entries:
- https://chart.onechart.dev/onechart-0.37.0.tgz
version: 0.37.0
- apiVersion: v2
created: "2023-06-09T07:00:07.361592283Z"
created: "2023-08-21T14:41:31.079039473Z"
dependencies:
- name: common
repository: file://../common
@@ -560,7 +700,7 @@ entries:
- https://chart.onechart.dev/onechart-0.36.0.tgz
version: 0.36.0
- apiVersion: v2
created: "2023-06-09T07:00:07.36058117Z"
created: "2023-08-21T14:41:31.077992468Z"
dependencies:
- name: common
repository: file://../common
@@ -574,7 +714,7 @@ entries:
- https://chart.onechart.dev/onechart-0.35.0.tgz
version: 0.35.0
- apiVersion: v2
created: "2023-06-09T07:00:07.359555757Z"
created: "2023-08-21T14:41:31.076980064Z"
dependencies:
- name: common
repository: file://../common
@@ -588,7 +728,7 @@ entries:
- https://chart.onechart.dev/onechart-0.34.0.tgz
version: 0.34.0
- apiVersion: v2
created: "2023-06-09T07:00:07.358502644Z"
created: "2023-08-21T14:41:31.07591466Z"
dependencies:
- name: common
repository: file://../common
@@ -602,7 +742,7 @@ entries:
- https://chart.onechart.dev/onechart-0.33.0.tgz
version: 0.33.0
- apiVersion: v2
created: "2023-06-09T07:00:07.357416731Z"
created: "2023-08-21T14:41:31.074882255Z"
dependencies:
- name: common
repository: file://../common
@@ -616,7 +756,7 @@ entries:
- https://chart.onechart.dev/onechart-0.32.0.tgz
version: 0.32.0
- apiVersion: v2
created: "2023-06-09T07:00:07.356424319Z"
created: "2023-08-21T14:41:31.073841151Z"
dependencies:
- name: common
repository: file://../common
@@ -630,7 +770,7 @@ entries:
- https://chart.onechart.dev/onechart-0.31.0.tgz
version: 0.31.0
- apiVersion: v2
created: "2023-06-09T07:00:07.355462407Z"
created: "2023-08-21T14:41:31.072893647Z"
dependencies:
- name: common
repository: file://../common
@@ -644,7 +784,7 @@ entries:
- https://chart.onechart.dev/onechart-0.30.0.tgz
version: 0.30.0
- apiVersion: v2
created: "2023-06-09T07:00:07.352629672Z"
created: "2023-08-21T14:41:31.070893438Z"
dependencies:
- name: common
repository: file://../common
@@ -658,7 +798,7 @@ entries:
- https://chart.onechart.dev/onechart-0.29.0.tgz
version: 0.29.0
- apiVersion: v2
created: "2023-06-09T07:00:07.351104053Z"
created: "2023-08-21T14:41:31.069989335Z"
dependencies:
- name: common
repository: file://../common
@@ -672,7 +812,7 @@ entries:
- https://chart.onechart.dev/onechart-0.28.0.tgz
version: 0.28.0
- apiVersion: v2
created: "2023-06-09T07:00:07.350139841Z"
created: "2023-08-21T14:41:31.068393428Z"
dependencies:
- name: common
repository: file://../common
@@ -686,7 +826,7 @@ entries:
- https://chart.onechart.dev/onechart-0.27.0.tgz
version: 0.27.0
- apiVersion: v2
created: "2023-06-09T07:00:07.349212629Z"
created: "2023-08-21T14:41:31.067217923Z"
dependencies:
- name: common
repository: file://../common
@@ -700,7 +840,7 @@ entries:
- https://chart.onechart.dev/onechart-0.27.0-rc3.tgz
version: 0.27.0-rc3
- apiVersion: v2
created: "2023-06-09T07:00:07.348246217Z"
created: "2023-08-21T14:41:31.065663216Z"
dependencies:
- name: common
repository: file://../common
@@ -714,7 +854,7 @@ entries:
- https://chart.onechart.dev/onechart-0.27.0-rc2.tgz
version: 0.27.0-rc2
- apiVersion: v2
created: "2023-06-09T07:00:07.347136104Z"
created: "2023-08-21T14:41:31.064546112Z"
dependencies:
- name: common
repository: file://../common
@@ -728,7 +868,7 @@ entries:
- https://chart.onechart.dev/onechart-0.27.0-rc1.tgz
version: 0.27.0-rc1
- apiVersion: v2
created: "2023-06-09T07:00:07.346195092Z"
created: "2023-08-21T14:41:31.063449007Z"
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
@@ -738,7 +878,7 @@ entries:
- https://chart.onechart.dev/onechart-0.26.0.tgz
version: 0.26.0
- apiVersion: v2
created: "2023-06-09T07:00:07.345471883Z"
created: "2023-08-21T14:41:31.062765904Z"
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
@@ -748,7 +888,7 @@ entries:
- https://chart.onechart.dev/onechart-0.25.0.tgz
version: 0.25.0
- apiVersion: v2
created: "2023-06-09T07:00:07.344795675Z"
created: "2023-08-21T14:41:31.062087101Z"
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
@@ -758,7 +898,7 @@ entries:
- https://chart.onechart.dev/onechart-0.24.1.tgz
version: 0.24.1
- apiVersion: v2
created: "2023-06-09T07:00:07.344107866Z"
created: "2023-08-21T14:41:31.061366798Z"
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
@@ -768,7 +908,7 @@ entries:
- https://chart.onechart.dev/onechart-0.24.0.tgz
version: 0.24.0
- apiVersion: v2
created: "2023-06-09T07:00:07.343388257Z"
created: "2023-08-21T14:41:31.060563895Z"
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
@@ -778,7 +918,7 @@ entries:
- https://chart.onechart.dev/onechart-0.23.0.tgz
version: 0.23.0
- apiVersion: v2
created: "2023-06-09T07:00:07.342660148Z"
created: "2023-08-21T14:41:31.059819792Z"
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
@@ -788,7 +928,7 @@ entries:
- https://chart.onechart.dev/onechart-0.22.0.tgz
version: 0.22.0
- apiVersion: v2
created: "2023-06-09T07:00:07.341297931Z"
created: "2023-08-21T14:41:31.059127989Z"
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
@@ -798,7 +938,7 @@ entries:
- https://chart.onechart.dev/onechart-0.21.0.tgz
version: 0.21.0
- apiVersion: v2
created: "2023-06-09T07:00:07.340034616Z"
created: "2023-08-21T14:41:31.058353686Z"
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
@@ -808,7 +948,7 @@ entries:
- https://chart.onechart.dev/onechart-0.20.0.tgz
version: 0.20.0
- apiVersion: v2
created: "2023-06-09T07:00:07.339036203Z"
created: "2023-08-21T14:41:31.057159781Z"
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
@@ -818,7 +958,7 @@ entries:
- https://chart.onechart.dev/onechart-0.19.0.tgz
version: 0.19.0
- apiVersion: v2
created: "2023-06-09T07:00:07.338324294Z"
created: "2023-08-21T14:41:31.055836575Z"
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
@@ -828,7 +968,7 @@ entries:
- https://chart.onechart.dev/onechart-0.18.0.tgz
version: 0.18.0
- apiVersion: v2
created: "2023-06-09T07:00:07.337533985Z"
created: "2023-08-21T14:41:31.054190368Z"
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
@@ -838,7 +978,7 @@ entries:
- https://chart.onechart.dev/onechart-0.17.0.tgz
version: 0.17.0
- apiVersion: v2
created: "2023-06-09T07:00:07.336862176Z"
created: "2023-08-21T14:41:31.053259464Z"
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
@@ -848,7 +988,7 @@ entries:
- https://chart.onechart.dev/onechart-0.16.0.tgz
version: 0.16.0
- apiVersion: v2
created: "2023-06-09T07:00:07.336178468Z"
created: "2023-08-21T14:41:31.052443961Z"
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
@@ -858,7 +998,7 @@ entries:
- https://chart.onechart.dev/onechart-0.15.3.tgz
version: 0.15.3
- apiVersion: v2
created: "2023-06-09T07:00:07.33550816Z"
created: "2023-08-21T14:41:31.050318752Z"
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
@@ -868,7 +1008,7 @@ entries:
- https://chart.onechart.dev/onechart-0.15.2.tgz
version: 0.15.2
- apiVersion: v2
created: "2023-06-09T07:00:07.334806751Z"
created: "2023-08-21T14:41:31.049626349Z"
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
@@ -878,7 +1018,7 @@ entries:
- https://chart.onechart.dev/onechart-0.15.1.tgz
version: 0.15.1
- apiVersion: v2
created: "2023-06-09T07:00:07.334133342Z"
created: "2023-08-21T14:41:31.048936646Z"
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
@@ -888,7 +1028,7 @@ entries:
- https://chart.onechart.dev/onechart-0.15.0.tgz
version: 0.15.0
- apiVersion: v2
created: "2023-06-09T07:00:07.333497135Z"
created: "2023-08-21T14:41:31.048202543Z"
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
@@ -898,7 +1038,7 @@ entries:
- https://chart.onechart.dev/onechart-0.14.0.tgz
version: 0.14.0
- apiVersion: v2
created: "2023-06-09T07:00:07.332734425Z"
created: "2023-08-21T14:41:31.04757214Z"
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
@@ -908,7 +1048,7 @@ entries:
- https://chart.onechart.dev/onechart-0.13.2.tgz
version: 0.13.2
- apiVersion: v2
created: "2023-06-09T07:00:07.331996816Z"
created: "2023-08-21T14:41:31.046903338Z"
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
@@ -918,7 +1058,7 @@ entries:
- https://chart.onechart.dev/onechart-0.13.1.tgz
version: 0.13.1
- apiVersion: v2
created: "2023-06-09T07:00:07.3306805Z"
created: "2023-08-21T14:41:31.046267235Z"
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
@@ -928,7 +1068,7 @@ entries:
- https://chart.onechart.dev/onechart-0.13.0.tgz
version: 0.13.0
- apiVersion: v2
created: "2023-06-09T07:00:07.329401784Z"
created: "2023-08-21T14:41:31.045658032Z"
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
@@ -938,7 +1078,7 @@ entries:
- https://chart.onechart.dev/onechart-0.12.2.tgz
version: 0.12.2
- apiVersion: v2
created: "2023-06-09T07:00:07.328702175Z"
created: "2023-08-21T14:41:31.04507783Z"
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
@@ -948,7 +1088,7 @@ entries:
- https://chart.onechart.dev/onechart-0.12.1.tgz
version: 0.12.1
- apiVersion: v2
created: "2023-06-09T07:00:07.32751446Z"
created: "2023-08-21T14:41:31.044430127Z"
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
@@ -958,7 +1098,7 @@ entries:
- https://chart.onechart.dev/onechart-0.12.0.tgz
version: 0.12.0
- apiVersion: v2
created: "2023-06-09T07:00:07.326849452Z"
created: "2023-08-21T14:41:31.043608124Z"
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
@@ -968,7 +1108,7 @@ entries:
- https://chart.onechart.dev/onechart-0.11.0.tgz
version: 0.11.0
- apiVersion: v2
created: "2023-06-09T07:00:07.326359646Z"
created: "2023-08-21T14:41:31.042998321Z"
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
@@ -978,7 +1118,7 @@ entries:
- https://chart.onechart.dev/onechart-0.10.0.tgz
version: 0.10.0
- apiVersion: v2
created: "2023-06-09T07:00:07.384924672Z"
created: "2023-08-21T14:41:31.116243429Z"
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
@@ -988,7 +1128,7 @@ entries:
- https://chart.onechart.dev/onechart-0.9.0.tgz
version: 0.9.0
- apiVersion: v2
created: "2023-06-09T07:00:07.384380365Z"
created: "2023-08-21T14:41:31.115690627Z"
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
@@ -998,7 +1138,7 @@ entries:
- https://chart.onechart.dev/onechart-0.8.2.tgz
version: 0.8.2
- apiVersion: v2
created: "2023-06-09T07:00:07.383880259Z"
created: "2023-08-21T14:41:31.115105724Z"
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
@@ -1008,7 +1148,7 @@ entries:
- https://chart.onechart.dev/onechart-0.8.1.tgz
version: 0.8.1
- apiVersion: v2
created: "2023-06-09T07:00:07.383374153Z"
created: "2023-08-21T14:41:31.114473921Z"
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
@@ -1018,7 +1158,7 @@ entries:
- https://chart.onechart.dev/onechart-0.8.0.tgz
version: 0.8.0
- apiVersion: v2
created: "2023-06-09T07:00:07.382796745Z"
created: "2023-08-21T14:41:31.11400712Z"
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
@@ -1028,7 +1168,7 @@ entries:
- https://chart.onechart.dev/onechart-0.7.1.tgz
version: 0.7.1
- apiVersion: v2
created: "2023-06-09T07:00:07.382315139Z"
created: "2023-08-21T14:41:31.113534918Z"
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
@@ -1038,7 +1178,7 @@ entries:
- https://chart.onechart.dev/onechart-0.7.0.tgz
version: 0.7.0
- apiVersion: v2
created: "2023-06-09T07:00:07.381787233Z"
created: "2023-08-21T14:41:31.113083316Z"
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
@@ -1048,7 +1188,7 @@ entries:
- https://chart.onechart.dev/onechart-0.6.1.tgz
version: 0.6.1
- apiVersion: v2
created: "2023-06-09T07:00:07.380835421Z"
created: "2023-08-21T14:41:31.112574614Z"
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
@@ -1058,7 +1198,7 @@ entries:
- https://chart.onechart.dev/onechart-0.6.0.tgz
version: 0.6.0
- apiVersion: v2
created: "2023-06-09T07:00:07.380236514Z"
created: "2023-08-21T14:41:31.102043369Z"
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
@@ -1068,7 +1208,7 @@ entries:
- https://chart.onechart.dev/onechart-0.5.1.tgz
version: 0.5.1
- apiVersion: v2
created: "2023-06-09T07:00:07.379745208Z"
created: "2023-08-21T14:41:31.101500167Z"
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
@@ -1078,7 +1218,7 @@ entries:
- https://chart.onechart.dev/onechart-0.5.0.tgz
version: 0.5.0
- apiVersion: v2
created: "2023-06-09T07:00:07.366113439Z"
created: "2023-08-21T14:41:31.087301907Z"
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
@@ -1088,7 +1228,7 @@ entries:
- https://chart.onechart.dev/onechart-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
created: "2023-06-09T07:00:07.354453194Z"
created: "2023-08-21T14:41:31.071935843Z"
description: A generic Helm chart for your application deployments
digest: fbaf6139e0ef8ad9a87cc1e41a97c7d25fdcf7ea17fa6364952f1a851a87480a
name: onechart
@@ -1097,7 +1237,7 @@ entries:
- https://chart.onechart.dev/onechart-0.3.2.tgz
version: 0.3.2
- apiVersion: v2
created: "2023-06-09T07:00:07.35407809Z"
created: "2023-08-21T14:41:31.071615741Z"
description: A generic Helm chart for your application deployments
digest: bd6f5b1865ab9b05fc6925c163ab8045235bd2723dba31f09d5083d24322d1f8
name: onechart
@@ -1106,7 +1246,7 @@ entries:
- https://chart.onechart.dev/onechart-0.3.1.tgz
version: 0.3.1
- apiVersion: v2
created: "2023-06-09T07:00:07.353074477Z"
created: "2023-08-21T14:41:31.07127004Z"
description: A generic Helm chart for your application deployments
digest: c79cef21eceab948144a289298cdf1e20e77a0782a883d7d65f9e709ccbbc271
name: onechart
@@ -1115,7 +1255,7 @@ entries:
- https://chart.onechart.dev/onechart-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
created: "2023-06-09T07:00:07.339384708Z"
created: "2023-08-21T14:41:31.057529282Z"
description: A generic Helm chart for your application deployments
digest: dd814ac5d08d5e6163a1b769df6803f5cb0f09d906045086dfcc5be522bb1ec3
name: onechart
@@ -1124,7 +1264,7 @@ entries:
- https://chart.onechart.dev/onechart-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
created: "2023-06-09T07:00:07.32589034Z"
created: "2023-08-21T14:41:31.042433419Z"
description: A generic Helm chart for your application deployments
digest: e46062df8053840cbfbba26c0a66a843a79f15a0b43a145ed019327513bd5098
name: onechart
@@ -1133,7 +1273,7 @@ entries:
- https://chart.onechart.dev/onechart-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
created: "2023-06-09T07:00:07.325604837Z"
created: "2023-08-21T14:41:31.042033617Z"
description: A generic Helm chart for your application deployments
digest: a7bbc8b7dcc008e89156cd1830282b7d39c0592e82ccdcefb77a25a42eca2a3d
name: onechart
@@ -1142,7 +1282,7 @@ entries:
- https://chart.onechart.dev/onechart-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
created: "2023-06-09T07:00:07.325319533Z"
created: "2023-08-21T14:41:31.041145613Z"
description: A generic Helm chart for your application deployments
digest: 1ed8c0645abdae6c950526e9c5410dc056847a11700dc7def5f1c55eb7de0cd4
name: onechart
@@ -1152,12 +1292,39 @@ entries:
version: 0.1.0
static-site:
- apiVersion: v2
created: "2023-06-09T07:00:07.385535379Z"
created: "2023-08-21T14:41:31.118758439Z"
description: Chart to build and deploy static sites
digest: 059657470ad450ca108a352d335c4554d1c572ea7093b7c37301e2e1d3e8e92b
digest: daa3189dd1ee1cc328227ec11a59359876da8c29f28b50a36e0bd57fb12fe1ce
name: static-site
type: application
urls:
- https://chart.onechart.dev/static-site-0.54.0.tgz
version: 0.54.0
- apiVersion: v2
created: "2023-08-21T14:41:31.118155937Z"
description: Chart to build and deploy static sites
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-21T14:41:31.117444034Z"
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-21T14:41:31.116825531Z"
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-06-09T07:00:07.301605639Z"
generated: "2023-08-21T14:41:31.008764577Z"
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