Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 314defb171 | |||
| 576204759f | |||
| fff72a0222 | |||
| 6d25c17397 | |||
| 5f96ab341d | |||
| ac8ad047b4 | |||
| 00becd0fab | |||
| 0b7faf42ac | |||
| 6480058dba | |||
| e2d2025c38 | |||
| 118cd8e1cb | |||
| 93892ec341 | |||
| 0a1db3d5cf |
@@ -7,6 +7,7 @@ lint:
|
|||||||
helm lint charts/onechart/
|
helm lint charts/onechart/
|
||||||
helm lint charts/cron-job/
|
helm lint charts/cron-job/
|
||||||
helm lint charts/namespaces/
|
helm lint charts/namespaces/
|
||||||
|
helm lint charts/static-site
|
||||||
|
|
||||||
kubeval:
|
kubeval:
|
||||||
rm -rf manifests && true
|
rm -rf manifests && true
|
||||||
@@ -27,6 +28,12 @@ kubeval:
|
|||||||
find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.20.0
|
find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.20.0
|
||||||
find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.24.0
|
find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.24.0
|
||||||
|
|
||||||
|
rm -rf manifests && true
|
||||||
|
mkdir manifests
|
||||||
|
helm template charts/static-site --output-dir manifests
|
||||||
|
find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.20.0
|
||||||
|
find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.24.0
|
||||||
|
|
||||||
test:
|
test:
|
||||||
helm dependency update charts/onechart
|
helm dependency update charts/onechart
|
||||||
helm unittest charts/onechart
|
helm unittest charts/onechart
|
||||||
@@ -36,6 +43,8 @@ test:
|
|||||||
|
|
||||||
helm unittest charts/namespaces
|
helm unittest charts/namespaces
|
||||||
|
|
||||||
|
helm unittest charts/static-site
|
||||||
|
|
||||||
package:
|
package:
|
||||||
helm dependency update charts/onechart
|
helm dependency update charts/onechart
|
||||||
helm package charts/onechart
|
helm package charts/onechart
|
||||||
@@ -48,6 +57,9 @@ package:
|
|||||||
helm package charts/namespaces
|
helm package charts/namespaces
|
||||||
mv namespaces*.tgz docs
|
mv namespaces*.tgz docs
|
||||||
|
|
||||||
|
helm package charts/static-site
|
||||||
|
mv static-site*.tgz docs
|
||||||
|
|
||||||
helm repo index docs --url https://chart.onechart.dev
|
helm repo index docs --url https://chart.onechart.dev
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ A generic Helm chart for your application deployments.
|
|||||||
|
|
||||||
Because no-one can remember the Kubernetes yaml syntax.
|
Because no-one can remember the Kubernetes yaml syntax.
|
||||||
|
|
||||||
https://gimlet.io/docs
|
https://gimlet.io/docs/onechart-reference
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
@@ -30,7 +30,7 @@ helm install my-release onechart/onechart \
|
|||||||
--set image.tag=1.19.3
|
--set image.tag=1.19.3
|
||||||
```
|
```
|
||||||
|
|
||||||
See all [Examples](/examples/deploying-an-image)
|
See all [Examples](/website/docs/examples/)
|
||||||
|
|
||||||
## Contribution Guidelines
|
## Contribution Guidelines
|
||||||
|
|
||||||
|
|||||||
@@ -2,21 +2,14 @@
|
|||||||
{{- 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
|
volumeMounts: &volumeMounts
|
||||||
{{- range .Values.volumes }}
|
{{- range .Values.volumes }}
|
||||||
|
{{- if not (hasPrefix "init-" .name) }}
|
||||||
{{- $volumeName := .name -}}
|
- name: {{ .name }}
|
||||||
{{- if .existingConfigMap }}
|
|
||||||
{{- $volumeName = .existingConfigMap -}}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .fileName }}
|
|
||||||
{{- $volumeName = include "common.robustName" .fileName -}}
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
- name: {{ $volumeName }}
|
|
||||||
mountPath: {{ .path }}
|
mountPath: {{ .path }}
|
||||||
{{- if .subPath }}
|
{{- if .subPath }}
|
||||||
subPath: {{ .subPath }}
|
subPath: {{ .subPath }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
{{- range .Values.sealedFileSecrets }}
|
{{- range .Values.sealedFileSecrets }}
|
||||||
- name: {{ .name }}
|
- name: {{ .name }}
|
||||||
mountPath: {{ .path }}
|
mountPath: {{ .path }}
|
||||||
|
|||||||
@@ -2,16 +2,7 @@
|
|||||||
{{- 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:
|
volumes:
|
||||||
{{- range .Values.volumes }}
|
{{- range .Values.volumes }}
|
||||||
|
- name: {{ .name }}
|
||||||
{{- $volumeName := .name -}}
|
|
||||||
{{- if .existingConfigMap }}
|
|
||||||
{{- $volumeName = .existingConfigMap -}}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .fileName }}
|
|
||||||
{{- $volumeName = include "common.robustName" .fileName -}}
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
- name: {{ $volumeName }}
|
|
||||||
{{- if .emptyDir }}
|
{{- if .emptyDir }}
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
{{- else if .existingConfigMap }}
|
{{- else if .existingConfigMap }}
|
||||||
@@ -19,7 +10,7 @@ volumes:
|
|||||||
name: {{ .existingConfigMap }}
|
name: {{ .existingConfigMap }}
|
||||||
{{- else if .fileName }}
|
{{- else if .fileName }}
|
||||||
configMap:
|
configMap:
|
||||||
name: {{ $volumeName }}
|
name: {{ template "common.robustName" .fileName }}
|
||||||
{{- else if .hostPath }}
|
{{- else if .hostPath }}
|
||||||
hostPath:
|
hostPath:
|
||||||
path: {{ .hostPath.path }}
|
path: {{ .hostPath.path }}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# 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.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 0.43.0
|
version: 0.47.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
|
|||||||
Binary file not shown.
@@ -15,7 +15,7 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# 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.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 0.43.0
|
version: 0.47.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
|
|||||||
Binary file not shown.
@@ -50,6 +50,26 @@ spec:
|
|||||||
{{- if .Values.serviceAccount }}
|
{{- if .Values.serviceAccount }}
|
||||||
serviceAccountName: {{ .Values.serviceAccount }}
|
serviceAccountName: {{ .Values.serviceAccount }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
initContainers:
|
||||||
|
{{- range .Values.initContainers }}
|
||||||
|
- name: {{ .name }}
|
||||||
|
image: "{{ .image }}:{{ .tag }}"
|
||||||
|
imagePullPolicy: {{ .imagePullPolicy | default "IfNotPresent" }}
|
||||||
|
{{- include "common.envFromRef.tpl" $ | nindent 10 }}
|
||||||
|
{{- if .command }}
|
||||||
|
command:
|
||||||
|
- {{ $.Values.shell }}
|
||||||
|
- -c
|
||||||
|
- {{ .command | quote}}
|
||||||
|
{{- end }}
|
||||||
|
volumeMounts:
|
||||||
|
{{- range $.Values.volumes }}
|
||||||
|
{{if (or (hasPrefix "shared-" .name) (hasPrefix "init-" .name))}}
|
||||||
|
- mountPath: {{ .path }}
|
||||||
|
name: {{ .name }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: {{ template "robustName" .Release.Name }}
|
- name: {{ template "robustName" .Release.Name }}
|
||||||
securityContext: &securityContext
|
securityContext: &securityContext
|
||||||
|
|||||||
@@ -0,0 +1,31 @@
|
|||||||
|
suite: test deployment
|
||||||
|
templates:
|
||||||
|
- deployment.yaml
|
||||||
|
- configmap.yaml
|
||||||
|
tests:
|
||||||
|
- it: Should set name, image and tag
|
||||||
|
set:
|
||||||
|
initContainers:
|
||||||
|
- name: pod1
|
||||||
|
image: nginx
|
||||||
|
tag: 1.2.2
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.template.spec.initContainers[0].name
|
||||||
|
value: pod1
|
||||||
|
- equal:
|
||||||
|
path: spec.template.spec.initContainers[0].image
|
||||||
|
value: "nginx:1.2.2"
|
||||||
|
- it: Should set command
|
||||||
|
set:
|
||||||
|
initContainers:
|
||||||
|
- command: "while true; do date; sleep 2; done &&
|
||||||
|
ls /data &&
|
||||||
|
printf something"
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.template.spec.initContainers[0].command
|
||||||
|
value: ['/bin/sh', '-c', 'while true; do date; sleep 2; done && ls /data && printf something']
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -137,25 +137,27 @@ tests:
|
|||||||
set:
|
set:
|
||||||
volumes:
|
volumes:
|
||||||
- existingConfigMap: my-configmap
|
- existingConfigMap: my-configmap
|
||||||
|
name: volume-name
|
||||||
path: /randomPath/app.conf
|
path: /randomPath/app.conf
|
||||||
subPath: app.conf
|
subPath: app.conf
|
||||||
asserts:
|
asserts:
|
||||||
- equal:
|
- equal:
|
||||||
path: spec.template.spec.volumes
|
path: spec.template.spec.volumes
|
||||||
value:
|
value:
|
||||||
- name: my-configmap
|
- name: volume-name
|
||||||
configMap:
|
configMap:
|
||||||
name: my-configmap
|
name: my-configmap
|
||||||
- equal:
|
- equal:
|
||||||
path: spec.template.spec.containers[0].volumeMounts
|
path: spec.template.spec.containers[0].volumeMounts
|
||||||
value:
|
value:
|
||||||
- name: my-configmap
|
- name: volume-name
|
||||||
mountPath: /randomPath/app.conf
|
mountPath: /randomPath/app.conf
|
||||||
subPath: app.conf
|
subPath: app.conf
|
||||||
- it: Should use a configmap with custom value
|
- it: Should use a configmap with custom value
|
||||||
set:
|
set:
|
||||||
volumes:
|
volumes:
|
||||||
- fileName: myfile.conf
|
- name: volume-name
|
||||||
|
fileName: myfile.conf
|
||||||
fileContent: |
|
fileContent: |
|
||||||
blablabla
|
blablabla
|
||||||
bla
|
bla
|
||||||
@@ -165,12 +167,55 @@ tests:
|
|||||||
- equal:
|
- equal:
|
||||||
path: spec.template.spec.volumes
|
path: spec.template.spec.volumes
|
||||||
value:
|
value:
|
||||||
- name: myfile-conf
|
- name: volume-name
|
||||||
configMap:
|
configMap:
|
||||||
name: myfile-conf
|
name: myfile-conf
|
||||||
- equal:
|
- equal:
|
||||||
path: spec.template.spec.containers[0].volumeMounts
|
path: spec.template.spec.containers[0].volumeMounts
|
||||||
value:
|
value:
|
||||||
- name: myfile-conf
|
- name: volume-name
|
||||||
mountPath: /randomPath/myfile.conf
|
mountPath: /randomPath/myfile.conf
|
||||||
subPath: myfile.conf
|
subPath: myfile.conf
|
||||||
|
- it: Should mount a volume only for the init container
|
||||||
|
set:
|
||||||
|
initContainers:
|
||||||
|
- name : pod
|
||||||
|
volumes:
|
||||||
|
- name: init-volume
|
||||||
|
path: /data
|
||||||
|
emptyDir: true
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.template.spec.volumes
|
||||||
|
value:
|
||||||
|
- name: init-volume
|
||||||
|
emptyDir: {}
|
||||||
|
- equal:
|
||||||
|
path: spec.template.spec.initContainers[0].volumeMounts
|
||||||
|
value:
|
||||||
|
- name: init-volume
|
||||||
|
mountPath: /data
|
||||||
|
- notEqual:
|
||||||
|
path: spec.template.spec.containers[0].volumeMounts
|
||||||
|
value:
|
||||||
|
- name: init-volume
|
||||||
|
emptyDir: {}
|
||||||
|
- it: Should mount a shared volume between the main container and the init container
|
||||||
|
set:
|
||||||
|
initContainers:
|
||||||
|
- name: pod
|
||||||
|
volumes:
|
||||||
|
- name: shared-volume
|
||||||
|
path: /data
|
||||||
|
emptyDir: true
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.template.spec.initContainers[0].volumeMounts
|
||||||
|
value:
|
||||||
|
- name: shared-volume
|
||||||
|
mountPath: /data
|
||||||
|
- equal:
|
||||||
|
path: spec.template.spec.containers[0].volumeMounts
|
||||||
|
value:
|
||||||
|
- name: shared-volume
|
||||||
|
mountPath: /data
|
||||||
|
|||||||
@@ -84,6 +84,53 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"initContainers": {
|
||||||
|
"$id": "#/properties/initcontainers",
|
||||||
|
"type": "array",
|
||||||
|
"title": "Init Containers",
|
||||||
|
"default": [],
|
||||||
|
"additionalItems": true,
|
||||||
|
"items": {
|
||||||
|
"$id": "#/properties/initcontainers/items",
|
||||||
|
"type": "object",
|
||||||
|
"anyOf": [
|
||||||
|
{
|
||||||
|
"id": "#/properties/volumes/oneOf/0",
|
||||||
|
"title": "InitContainer",
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"name": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "Name",
|
||||||
|
"description": "The name of the init container"
|
||||||
|
},
|
||||||
|
"image": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "Image"
|
||||||
|
},
|
||||||
|
"tag": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "Tag"
|
||||||
|
},
|
||||||
|
"imagePullPolicy": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "Command",
|
||||||
|
"default": "IfNotPresent"
|
||||||
|
},
|
||||||
|
"command": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "Command"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"name",
|
||||||
|
"image",
|
||||||
|
"tag"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"replicas": {
|
"replicas": {
|
||||||
"$id": "#/properties/replicas",
|
"$id": "#/properties/replicas",
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
# Patterns to ignore when building packages.
|
||||||
|
# This supports shell glob matching, relative path matching, and
|
||||||
|
# negation (prefixed with !). Only one pattern per line.
|
||||||
|
.DS_Store
|
||||||
|
# Common VCS dirs
|
||||||
|
.git/
|
||||||
|
.gitignore
|
||||||
|
.bzr/
|
||||||
|
.bzrignore
|
||||||
|
.hg/
|
||||||
|
.hgignore
|
||||||
|
.svn/
|
||||||
|
# Common backup files
|
||||||
|
*.swp
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
*.orig
|
||||||
|
*~
|
||||||
|
# Various IDEs
|
||||||
|
.project
|
||||||
|
.idea/
|
||||||
|
*.tmproj
|
||||||
|
.vscode/
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: static-site
|
||||||
|
description: Chart to build and deploy static sites
|
||||||
|
# A chart can be either an 'application' or a 'library' chart.
|
||||||
|
#
|
||||||
|
# Application charts are a collection of templates that can be packaged into versioned archives
|
||||||
|
# to be deployed.
|
||||||
|
#
|
||||||
|
# Library charts provide useful utilities or functions for the chart developer. They're included as
|
||||||
|
# a dependency of application charts to inject those utilities and functions into the rendering
|
||||||
|
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
|
||||||
|
type: application
|
||||||
|
|
||||||
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
|
# to the chart and its templates, including the app version.
|
||||||
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
|
version: 0.1.0
|
||||||
|
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"schemaIDs": [
|
||||||
|
"#/properties/gitCloneUrl",
|
||||||
|
"#/properties/buildImage",
|
||||||
|
"#/properties/buildTag",
|
||||||
|
"#/properties/buildScript",
|
||||||
|
"#/properties/builtAssets"
|
||||||
|
|
||||||
|
],
|
||||||
|
"uiSchema": {
|
||||||
|
"#/properties/buildScript":{
|
||||||
|
"ui:widget": "textarea"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"metaData": {
|
||||||
|
"name": "Build",
|
||||||
|
"icon": "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"schemaIDs": [
|
||||||
|
"#/properties/ingress"
|
||||||
|
],
|
||||||
|
"uiSchema": {},
|
||||||
|
"metaData": {
|
||||||
|
"name": "Ingress",
|
||||||
|
"icon": "M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
{{/*
|
||||||
|
Expand the name of the chart.
|
||||||
|
*/}}
|
||||||
|
{{- define "staticSite.name" -}}
|
||||||
|
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Create a default fully qualified app name.
|
||||||
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
||||||
|
If release name contains chart name it will be used as a full name.
|
||||||
|
*/}}
|
||||||
|
{{- define "staticSite.fullname" -}}
|
||||||
|
{{- if .Values.fullnameOverride }}
|
||||||
|
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- else }}
|
||||||
|
{{- $name := default .Chart.Name .Values.nameOverride }}
|
||||||
|
{{- if contains $name .Release.Name }}
|
||||||
|
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- else }}
|
||||||
|
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Create chart name and version as used by the chart label.
|
||||||
|
*/}}
|
||||||
|
{{- define "staticSite.chart" -}}
|
||||||
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Common labels
|
||||||
|
*/}}
|
||||||
|
{{- define "staticSite.labels" -}}
|
||||||
|
helm.sh/chart: {{ include "staticSite.chart" . }}
|
||||||
|
{{ include "staticSite.selectorLabels" . }}
|
||||||
|
{{- if .Chart.AppVersion }}
|
||||||
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
||||||
|
{{- end }}
|
||||||
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Selector labels
|
||||||
|
*/}}
|
||||||
|
{{- define "staticSite.selectorLabels" -}}
|
||||||
|
app.kubernetes.io/name: {{ include "staticSite.name" . }}
|
||||||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Create the name of the service account to use
|
||||||
|
*/}}
|
||||||
|
{{- define "staticSite.serviceAccountName" -}}
|
||||||
|
{{- if .Values.serviceAccount.create }}
|
||||||
|
{{- default (include "staticSite.fullname" .) .Values.serviceAccount.name }}
|
||||||
|
{{- else }}
|
||||||
|
{{- default "default" .Values.serviceAccount.name }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Create robustName that can be used as Kubernetes resource name, and as subdomain as well
|
||||||
|
\w – Latin letters, digits, underscore '_' .
|
||||||
|
\W – all but \w .
|
||||||
|
*/}}
|
||||||
|
{{- define "robustName" -}}
|
||||||
|
{{ regexReplaceAll "\\W+" . "-" | replace "_" "-" | lower | trunc 63 | trimSuffix "-" }}
|
||||||
|
{{- end }}
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: {{ template "robustName" .Release.Name }}
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
{{- include "staticSite.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
replicas: {{ .Values.replicaCount }}
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
{{- include "staticSite.selectorLabels" . | nindent 6 }}
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
{{- with .Values.podAnnotations }}
|
||||||
|
annotations:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
labels:
|
||||||
|
{{- include "staticSite.selectorLabels" . | nindent 8 }}
|
||||||
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
serviceAccountName: {{ template "robustName" .Release.Name }}
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||||
|
volumes:
|
||||||
|
- name: static-files
|
||||||
|
emptyDir: {}
|
||||||
|
initContainers:
|
||||||
|
- name: init-con
|
||||||
|
image: {{ .Values.buildImage }}:{{ .Values.buildTag }}
|
||||||
|
{{- if .Values.buildScript }}
|
||||||
|
command:
|
||||||
|
- sh
|
||||||
|
- -c
|
||||||
|
- |
|
||||||
|
git clone {{ .Values.gitCloneUrl}} &&
|
||||||
|
cd {{ regexFind "([^\\/]+$)" .Values.gitCloneUrl | replace ".git" "" }} &&
|
||||||
|
{{ .Values.buildScript | nindent 12}}
|
||||||
|
mkdir -p /usr/share/nginx/html &&
|
||||||
|
cp -r ./{{ .Values.builtAssets }}. /usr/share/nginx/html
|
||||||
|
{{- end }}
|
||||||
|
volumeMounts:
|
||||||
|
- name: static-files
|
||||||
|
mountPath: /usr/share/nginx/html
|
||||||
|
containers:
|
||||||
|
- name: {{ template "robustName" .Release.Name }}
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||||
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
|
volumeMounts:
|
||||||
|
- name: static-files
|
||||||
|
mountPath: /usr/share/nginx/html
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
containerPort: {{ .Values.service.port }}
|
||||||
|
protocol: TCP
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
{{/* OneChart ingress snippet */}}
|
||||||
|
{{- define "onechart.ingress" }}
|
||||||
|
{{- $robustName := include "robustName" .root.Release.Name -}}
|
||||||
|
{{- $resourceName := $robustName -}}
|
||||||
|
{{- if .longName }}
|
||||||
|
{{- $resourceName = printf "%s-%s" $robustName (include "robustName" .ingress.host) -}}
|
||||||
|
{{- end }}
|
||||||
|
---
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: Ingress
|
||||||
|
metadata:
|
||||||
|
name: {{ $resourceName }}
|
||||||
|
namespace: {{ .root.Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
{{- include "staticSite.labels" .root | nindent 4 }}
|
||||||
|
{{- if or (or .root.Values.gitSha .ingress.annotations) .root.Values.gitRepository }}
|
||||||
|
annotations:
|
||||||
|
{{- if .ingress.annotations }}
|
||||||
|
{{- toYaml .ingress.annotations | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
spec:
|
||||||
|
{{- if .ingress.ingressClassName }}
|
||||||
|
ingressClassName: {{ .ingress.ingressClassName }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if default false .ingress.tlsEnabled }}
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- {{ .ingress.host | quote }}
|
||||||
|
secretName: {{ printf "tls-%s" $resourceName }}
|
||||||
|
{{- end }}
|
||||||
|
rules:
|
||||||
|
- host: {{ .ingress.host | quote }}
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: {{ .ingress.path | default "/" | quote }}
|
||||||
|
pathType: "Prefix"
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: {{ $robustName }}
|
||||||
|
port:
|
||||||
|
number: {{ .root.Values.service.port }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- with .Values.ingress }}
|
||||||
|
{{- template "onechart.ingress" (dict "root" $ "ingress" .) }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
|
{{- range .Values.ingresses }}
|
||||||
|
{{template "onechart.ingress" (dict "root" $ "ingress" . "longName" true) }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: {{ template "robustName" .Release.Name }}
|
||||||
|
labels:
|
||||||
|
{{- include "staticSite.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
type: {{ .Values.service.type }}
|
||||||
|
ports:
|
||||||
|
- port: {{ .Values.service.port }}
|
||||||
|
targetPort: http
|
||||||
|
protocol: TCP
|
||||||
|
name: http
|
||||||
|
selector:
|
||||||
|
{{- include "staticSite.selectorLabels" . | nindent 4 }}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{{- 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 }}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
suite: test deployment
|
||||||
|
templates:
|
||||||
|
- deployment.yaml
|
||||||
|
tests:
|
||||||
|
- it: Should set image, tag and command
|
||||||
|
set:
|
||||||
|
gitCloneUrl: https:/github.com/mycompany/myrepo.git
|
||||||
|
buildImage: nginx
|
||||||
|
buildTag: x.y.z
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.template.spec.initContainers[0].image
|
||||||
|
value: nginx:x.y.z
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
suite: test deployment
|
||||||
|
templates:
|
||||||
|
- ingress.yaml
|
||||||
|
tests:
|
||||||
|
- it: Should set Ingress host name
|
||||||
|
set:
|
||||||
|
ingress:
|
||||||
|
host: chart-example.local
|
||||||
|
tlsEnabled: true
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.tls
|
||||||
|
value:
|
||||||
|
- hosts:
|
||||||
|
- chart-example.local
|
||||||
|
secretName: tls-release-name
|
||||||
|
- equal:
|
||||||
|
path: spec.rules
|
||||||
|
value:
|
||||||
|
- host: chart-example.local
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: "/"
|
||||||
|
pathType: "Prefix"
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: release-name
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
- it: Should pass ingress host name as is, user must sanitize it
|
||||||
|
set:
|
||||||
|
ingress:
|
||||||
|
host: feature/my_branch.local
|
||||||
|
tlsEnabled: true
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.tls
|
||||||
|
value:
|
||||||
|
- hosts:
|
||||||
|
- feature/my_branch.local
|
||||||
|
secretName: tls-release-name
|
||||||
|
- equal:
|
||||||
|
path: spec.rules
|
||||||
|
value:
|
||||||
|
- host: feature/my_branch.local
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: "/"
|
||||||
|
pathType: "Prefix"
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: release-name
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
- it: Should set Ingress annotation
|
||||||
|
set:
|
||||||
|
ingress:
|
||||||
|
host: chart-example.local
|
||||||
|
annotations:
|
||||||
|
just/a-random: annotation
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: metadata.annotations
|
||||||
|
value:
|
||||||
|
just/a-random: annotation
|
||||||
|
- it: Should set ingress class
|
||||||
|
set:
|
||||||
|
ingress:
|
||||||
|
host: chart-example.local
|
||||||
|
ingressClassName: nginx
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.ingressClassName
|
||||||
|
value: nginx
|
||||||
|
- it: Should generate multiple ingresses
|
||||||
|
set:
|
||||||
|
ingresses:
|
||||||
|
- host: chart-example.local
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: nginx
|
||||||
|
- host: another.local
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: nginx
|
||||||
|
asserts:
|
||||||
|
- hasDocuments:
|
||||||
|
count: 2
|
||||||
|
- it: Should generate multiple ingresses
|
||||||
|
set:
|
||||||
|
ingress:
|
||||||
|
host: chart-example.local
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: nginx
|
||||||
|
ingresses:
|
||||||
|
- host: chart-example.local
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: nginx
|
||||||
|
- host: another.local
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: nginx
|
||||||
|
asserts:
|
||||||
|
- hasDocuments:
|
||||||
|
count: 3
|
||||||
|
- it: Should have unique TLS secret names
|
||||||
|
set:
|
||||||
|
ingresses:
|
||||||
|
- host: chart-example.local
|
||||||
|
tlsEnabled: true
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: nginx
|
||||||
|
- host: another.local
|
||||||
|
tlsEnabled: true
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: nginx
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.tls
|
||||||
|
value:
|
||||||
|
- hosts:
|
||||||
|
- chart-example.local
|
||||||
|
secretName: tls-release-name-chart-example-local
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
suite: test ingress
|
||||||
|
templates:
|
||||||
|
- ingress.yaml
|
||||||
|
tests:
|
||||||
|
- it: Should default
|
||||||
|
set:
|
||||||
|
ingress:
|
||||||
|
host: chart-example.local
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.rules[0].http.paths[0].path
|
||||||
|
value: "/"
|
||||||
|
- it: Should use path
|
||||||
|
set:
|
||||||
|
ingress:
|
||||||
|
host: chart-example.local
|
||||||
|
path: "/mypath"
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.rules[0].http.paths[0].path
|
||||||
|
value: "/mypath"
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
suite: test deployment
|
||||||
|
templates:
|
||||||
|
- ingress.yaml
|
||||||
|
tests:
|
||||||
|
- it: Should use service port
|
||||||
|
set:
|
||||||
|
ingress:
|
||||||
|
host: chart-example.local
|
||||||
|
asserts:
|
||||||
|
- equal:
|
||||||
|
path: spec.rules[0].http.paths[0].backend.service.port.number
|
||||||
|
value: 1234
|
||||||
@@ -0,0 +1,125 @@
|
|||||||
|
{
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
|
"$id": "http://example.com/example.json",
|
||||||
|
"type": "object",
|
||||||
|
"title": "The root schema",
|
||||||
|
"description": "The root schema comprises the entire JSON document.",
|
||||||
|
"default": {},
|
||||||
|
"examples": [
|
||||||
|
{
|
||||||
|
"gitCloneUrl": "https://github.com/gimlet-io/hugo-site.git",
|
||||||
|
"buildImage": "node",
|
||||||
|
"buildTag": "latest",
|
||||||
|
"buildScript": "npm install && npm install -g gatsby-cli && gatsby build",
|
||||||
|
"builtAssets": "public/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"required": [
|
||||||
|
"gitCloneUrl",
|
||||||
|
"buildImage",
|
||||||
|
"buildTag",
|
||||||
|
"buildScript",
|
||||||
|
"builtAssets"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"gitCloneUrl": {
|
||||||
|
"$id": "#/properties/gitCloneUrl",
|
||||||
|
"type": "string",
|
||||||
|
"title": "Repo url",
|
||||||
|
"description": "The static site's git repository",
|
||||||
|
"default": "https://github.com/gimlet-io/hugo-site.git"
|
||||||
|
},
|
||||||
|
"buildImage": {
|
||||||
|
"$id": "#/properties/buildImage",
|
||||||
|
"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"
|
||||||
|
},
|
||||||
|
"buildScript": {
|
||||||
|
"$id": "#/properties/buildScript",
|
||||||
|
"type": "string",
|
||||||
|
"title": "Build script",
|
||||||
|
"description": "Commands required for the build to be completed",
|
||||||
|
"default": "# !/usr/bin/env bash\n# pre -reqs\napt-get update && apt-get install -y wget\n\n# Setting up Hugo \nwget https://github.com/gohugoio/hugo/releases/download/v0.111.3/hugo_0.111.3_Linux-64bit.tar.gz &&\ntar -xzf hugo_0.111.3_Linux-64bit.tar.gz &&\nchmod +x hugo\n\n./hugo"
|
||||||
|
|
||||||
|
},
|
||||||
|
"builtAssets": {
|
||||||
|
"$id": "#/properties/builtAssets",
|
||||||
|
"type": "string",
|
||||||
|
"title": "Built assets",
|
||||||
|
"description": "The folder containing the build's generated files",
|
||||||
|
"default": "public/"
|
||||||
|
},
|
||||||
|
"ingress": {
|
||||||
|
"$id": "#/properties/ingress",
|
||||||
|
"type": "object",
|
||||||
|
"title": "Incoming traffic",
|
||||||
|
"description": "",
|
||||||
|
"default": {},
|
||||||
|
"examples": [
|
||||||
|
{
|
||||||
|
"tlsEnabled": false,
|
||||||
|
"annotations": {
|
||||||
|
"kubernetes.io/ingress.class": "nginx"
|
||||||
|
},
|
||||||
|
"host": "my-release.mycompany.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"required": [],
|
||||||
|
"properties": {
|
||||||
|
"host": {
|
||||||
|
"$id": "#/properties/ingress/properties/host",
|
||||||
|
"type": "string",
|
||||||
|
"title": "Host Name",
|
||||||
|
"description": "Where your application will be accessible",
|
||||||
|
"default": "",
|
||||||
|
"examples": [
|
||||||
|
"my-release.mycompany.com"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"path": {
|
||||||
|
"$id": "#/properties/ingress/properties/ingressPath",
|
||||||
|
"type": "string",
|
||||||
|
"title": "Path",
|
||||||
|
"description": "The API path where your service is accessible",
|
||||||
|
"default": "/",
|
||||||
|
"examples": [
|
||||||
|
"/api/myservice"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"tlsEnabled": {
|
||||||
|
"$id": "#/properties/ingress/properties/tlsEnabled",
|
||||||
|
"type": "boolean",
|
||||||
|
"title": "HTTPS",
|
||||||
|
"description": "",
|
||||||
|
"default": false,
|
||||||
|
"examples": [
|
||||||
|
false
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"annotations": {
|
||||||
|
"$id": "#/properties/ingress/properties/annotations",
|
||||||
|
"type": "object",
|
||||||
|
"title": "Annotations",
|
||||||
|
"description": "Annotations are used to control ingress behavior. See the full list for the Ingress Nginx project at https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/annotations/. Use the `cert-manager.io/cluster-issuer:\"letsencrypt\"` one to request TLS certificates, `kubernetes.io/ingress.class: \"nginx\"` to select an ingress controller.",
|
||||||
|
"default": {},
|
||||||
|
"examples": [
|
||||||
|
{
|
||||||
|
"kubernetes.io/ingress.class": "nginx"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"additionalProperties": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
"additionalProperties": true
|
||||||
|
}
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
# Default values for static-site.
|
||||||
|
# This is a YAML-formatted file.
|
||||||
|
# Declare variables to be passed into your templates.
|
||||||
|
|
||||||
|
replicaCount: 1
|
||||||
|
|
||||||
|
image:
|
||||||
|
repository: nginx
|
||||||
|
tag: latest
|
||||||
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
imagePullSecrets: []
|
||||||
|
nameOverride: ""
|
||||||
|
fullnameOverride: ""
|
||||||
|
|
||||||
|
serviceAccount:
|
||||||
|
# Specifies whether a service account should be created
|
||||||
|
create: true
|
||||||
|
# Annotations to add to the service account
|
||||||
|
annotations: {}
|
||||||
|
# The name of the service account to use.
|
||||||
|
# If not set and create is true, a name is generated using the fullname template
|
||||||
|
name: ""
|
||||||
|
|
||||||
|
podAnnotations: {}
|
||||||
|
|
||||||
|
podSecurityContext: {}
|
||||||
|
# fsGroup: 2000
|
||||||
|
|
||||||
|
securityContext:
|
||||||
|
# capabilities:
|
||||||
|
# drop:
|
||||||
|
# - ALL
|
||||||
|
# readOnlyRootFilesystem: true
|
||||||
|
# runAsNonRoot: true
|
||||||
|
runAsUser: 0
|
||||||
|
|
||||||
|
service:
|
||||||
|
type: ClusterIP
|
||||||
|
port: 80
|
||||||
|
|
||||||
|
# ingress:
|
||||||
|
# host: dummyapp.127.0.0.1.nip.io
|
||||||
|
# ingressClassName: nginx
|
||||||
|
# tlsEnabled: false
|
||||||
|
# annotations:
|
||||||
|
# cert-manager.io/cluster-issuer: letsencrypt-staging
|
||||||
|
|
||||||
|
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 200m
|
||||||
|
memory: 200Mi
|
||||||
|
limits:
|
||||||
|
cpu: 200m
|
||||||
|
memory: 200Mi
|
||||||
|
|
||||||
|
nodeSelector: {}
|
||||||
|
|
||||||
|
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
|
||||||
|
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/
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+207
-85
@@ -2,7 +2,63 @@ apiVersion: v1
|
|||||||
entries:
|
entries:
|
||||||
cron-job:
|
cron-job:
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.657827179Z"
|
created: "2023-03-30T12:04:56.106345761Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: file://../common
|
||||||
|
version: 0.2.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: ccb38e7b1d22b8829c4436cd25d91650a6b03f56b333a0ac87afd992dd6d57a0
|
||||||
|
name: cron-job
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://chart.onechart.dev/cron-job-0.46.0.tgz
|
||||||
|
version: 0.46.0
|
||||||
|
- apiVersion: v2
|
||||||
|
created: "2023-03-30T12:04:56.105778066Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: file://../common
|
||||||
|
version: 0.2.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: 22bbb11f3c5ff5c7618cda3d311bef56a3bef0223292d61c7b4380cc5dab37f4
|
||||||
|
name: cron-job
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://chart.onechart.dev/cron-job-0.45.0.tgz
|
||||||
|
version: 0.45.0
|
||||||
|
- apiVersion: v2
|
||||||
|
created: "2023-03-30T12:04:56.105221872Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: file://../common
|
||||||
|
version: 0.2.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: d87617be659d439d5c5fabc45cc9a8277cb86b97b99118ae1d9d05c74e807e5f
|
||||||
|
name: cron-job
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://chart.onechart.dev/cron-job-0.44.0.tgz
|
||||||
|
version: 0.44.0
|
||||||
|
- apiVersion: v2
|
||||||
|
created: "2023-03-30T12:04:56.104648777Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: file://../common
|
||||||
|
version: 0.2.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: 66e0c493901d433dc9db3b186c7fbae7018cd2dc0ddc7cab70a146496c706601
|
||||||
|
name: cron-job
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://chart.onechart.dev/cron-job-0.43.0.tgz
|
||||||
|
version: 0.43.0
|
||||||
|
- apiVersion: v2
|
||||||
|
created: "2023-03-30T12:04:56.104066483Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -16,7 +72,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.42.0.tgz
|
- https://chart.onechart.dev/cron-job-0.42.0.tgz
|
||||||
version: 0.42.0
|
version: 0.42.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.657179376Z"
|
created: "2023-03-30T12:04:56.103501888Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -30,7 +86,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.41.0.tgz
|
- https://chart.onechart.dev/cron-job-0.41.0.tgz
|
||||||
version: 0.41.0
|
version: 0.41.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.656515873Z"
|
created: "2023-03-30T12:04:56.102968094Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -44,7 +100,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.40.0.tgz
|
- https://chart.onechart.dev/cron-job-0.40.0.tgz
|
||||||
version: 0.40.0
|
version: 0.40.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.65581147Z"
|
created: "2023-03-30T12:04:56.102404899Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -58,7 +114,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.39.0.tgz
|
- https://chart.onechart.dev/cron-job-0.39.0.tgz
|
||||||
version: 0.39.0
|
version: 0.39.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.654851565Z"
|
created: "2023-03-30T12:04:56.101783205Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -72,7 +128,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.38.0.tgz
|
- https://chart.onechart.dev/cron-job-0.38.0.tgz
|
||||||
version: 0.38.0
|
version: 0.38.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.65376236Z"
|
created: "2023-03-30T12:04:56.101094212Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -86,7 +142,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.37.0.tgz
|
- https://chart.onechart.dev/cron-job-0.37.0.tgz
|
||||||
version: 0.37.0
|
version: 0.37.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.652663755Z"
|
created: "2023-03-30T12:04:56.099472328Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -100,7 +156,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.36.0.tgz
|
- https://chart.onechart.dev/cron-job-0.36.0.tgz
|
||||||
version: 0.36.0
|
version: 0.36.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.651894652Z"
|
created: "2023-03-30T12:04:56.09823384Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -114,7 +170,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.35.0.tgz
|
- https://chart.onechart.dev/cron-job-0.35.0.tgz
|
||||||
version: 0.35.0
|
version: 0.35.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.650475145Z"
|
created: "2023-03-30T12:04:56.097696145Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -128,7 +184,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.34.0.tgz
|
- https://chart.onechart.dev/cron-job-0.34.0.tgz
|
||||||
version: 0.34.0
|
version: 0.34.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.649800842Z"
|
created: "2023-03-30T12:04:56.09716805Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -142,7 +198,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.33.0.tgz
|
- https://chart.onechart.dev/cron-job-0.33.0.tgz
|
||||||
version: 0.33.0
|
version: 0.33.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.649124539Z"
|
created: "2023-03-30T12:04:56.096634355Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -156,7 +212,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.32.0.tgz
|
- https://chart.onechart.dev/cron-job-0.32.0.tgz
|
||||||
version: 0.32.0
|
version: 0.32.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.648440236Z"
|
created: "2023-03-30T12:04:56.09609656Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -170,7 +226,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.2.2.tgz
|
- https://chart.onechart.dev/cron-job-0.2.2.tgz
|
||||||
version: 0.2.2
|
version: 0.2.2
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.647773633Z"
|
created: "2023-03-30T12:04:56.095510866Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -184,7 +240,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.2.1.tgz
|
- https://chart.onechart.dev/cron-job-0.2.1.tgz
|
||||||
version: 0.2.1
|
version: 0.2.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.64703063Z"
|
created: "2023-03-30T12:04:56.094932072Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -198,7 +254,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.2.0.tgz
|
- https://chart.onechart.dev/cron-job-0.2.0.tgz
|
||||||
version: 0.2.0
|
version: 0.2.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.646287926Z"
|
created: "2023-03-30T12:04:56.094387477Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 02a23d8b4177290a518ee5de6a5e1f557f7409f94b2e04f23fedea193464188f
|
digest: 02a23d8b4177290a518ee5de6a5e1f557f7409f94b2e04f23fedea193464188f
|
||||||
@@ -208,7 +264,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.1.2.tgz
|
- https://chart.onechart.dev/cron-job-0.1.2.tgz
|
||||||
version: 0.1.2
|
version: 0.1.2
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.645945225Z"
|
created: "2023-03-30T12:04:56.09412898Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: afab9ba533a4686827b54b0dad64f5bbf76f7fbc075e35fb1034689db9ab9dda
|
digest: afab9ba533a4686827b54b0dad64f5bbf76f7fbc075e35fb1034689db9ab9dda
|
||||||
@@ -218,7 +274,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/cron-job-0.1.1.tgz
|
- https://chart.onechart.dev/cron-job-0.1.1.tgz
|
||||||
version: 0.1.1
|
version: 0.1.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.645599623Z"
|
created: "2023-03-30T12:04:56.093816183Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 01f9fa40c1c4085d7688474ab00c9e9d21bd1d0793db6b75f2edda0e18456282
|
digest: 01f9fa40c1c4085d7688474ab00c9e9d21bd1d0793db6b75f2edda0e18456282
|
||||||
@@ -229,16 +285,16 @@ entries:
|
|||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
namespaces:
|
namespaces:
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.659050284Z"
|
created: "2023-03-30T12:04:56.107534449Z"
|
||||||
description: Chart to create namespaces and their defaults
|
description: Chart to create namespaces and their defaults
|
||||||
digest: a908fdd90fea6d27a2cc968f45bee695ce9984d1185168838e58395ea0f49121
|
digest: fc0d317e7482cb655990dc2cf1e703556bfe02394a3937462c4b18fce358aa72
|
||||||
name: namespaces
|
name: namespaces
|
||||||
type: application
|
type: application
|
||||||
urls:
|
urls:
|
||||||
- https://chart.onechart.dev/namespaces-0.3.0.tgz
|
- https://chart.onechart.dev/namespaces-0.3.0.tgz
|
||||||
version: 0.3.0
|
version: 0.3.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.658850683Z"
|
created: "2023-03-30T12:04:56.107327551Z"
|
||||||
description: Chart to create namespaces and their defaults
|
description: Chart to create namespaces and their defaults
|
||||||
digest: a8e28dab9dc1a0044e75fbf8dd6d89c760c6fe9caa76bf16076cf5ecb311e808
|
digest: a8e28dab9dc1a0044e75fbf8dd6d89c760c6fe9caa76bf16076cf5ecb311e808
|
||||||
name: namespaces
|
name: namespaces
|
||||||
@@ -247,7 +303,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/namespaces-0.2.1.tgz
|
- https://chart.onechart.dev/namespaces-0.2.1.tgz
|
||||||
version: 0.2.1
|
version: 0.2.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.658450182Z"
|
created: "2023-03-30T12:04:56.106912455Z"
|
||||||
description: Chart to create namespaces and their defaults
|
description: Chart to create namespaces and their defaults
|
||||||
digest: 9539bfd2fde6d8f2b36ffec99c8a3a3eb7887462e98ee740b0ae0ea2b16b96b6
|
digest: 9539bfd2fde6d8f2b36ffec99c8a3a3eb7887462e98ee740b0ae0ea2b16b96b6
|
||||||
name: namespaces
|
name: namespaces
|
||||||
@@ -256,7 +312,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/namespaces-0.2.0.tgz
|
- https://chart.onechart.dev/namespaces-0.2.0.tgz
|
||||||
version: 0.2.0
|
version: 0.2.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.65806738Z"
|
created: "2023-03-30T12:04:56.106553359Z"
|
||||||
description: Chart to create namespaces and their defaults
|
description: Chart to create namespaces and their defaults
|
||||||
digest: 88b06d78a9d1bda6f2ee15b1fad7f25399ac25c2320fb9a8dfa1a4fd14afdf6e
|
digest: 88b06d78a9d1bda6f2ee15b1fad7f25399ac25c2320fb9a8dfa1a4fd14afdf6e
|
||||||
name: namespaces
|
name: namespaces
|
||||||
@@ -266,7 +322,63 @@ entries:
|
|||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
onechart:
|
onechart:
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.702614683Z"
|
created: "2023-03-30T12:04:56.161432425Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: file://../common
|
||||||
|
version: 0.2.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: 3f5f552b4f8cdc72e26041dee2c20b1349552b9275530303a27f353a844e84df
|
||||||
|
name: onechart
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://chart.onechart.dev/onechart-0.46.0.tgz
|
||||||
|
version: 0.46.0
|
||||||
|
- apiVersion: v2
|
||||||
|
created: "2023-03-30T12:04:56.160616833Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: file://../common
|
||||||
|
version: 0.2.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: 8c59efd7ed0da48cc0cba293f518303715729ee2ddcd2d600292c14a6660e097
|
||||||
|
name: onechart
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://chart.onechart.dev/onechart-0.45.0.tgz
|
||||||
|
version: 0.45.0
|
||||||
|
- apiVersion: v2
|
||||||
|
created: "2023-03-30T12:04:56.159736241Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: file://../common
|
||||||
|
version: 0.2.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: e84a1dde081eff22800ceec11aab3bc69b3fd16b39303f49ccff70c1c0570ee7
|
||||||
|
name: onechart
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://chart.onechart.dev/onechart-0.44.0.tgz
|
||||||
|
version: 0.44.0
|
||||||
|
- apiVersion: v2
|
||||||
|
created: "2023-03-30T12:04:56.158907049Z"
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: file://../common
|
||||||
|
version: 0.2.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: 7a9a4fd45b9649090a1d15fd574dccfb36382bc98354e75e9034eb08efb4b2eb
|
||||||
|
name: onechart
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://chart.onechart.dev/onechart-0.43.0.tgz
|
||||||
|
version: 0.43.0
|
||||||
|
- apiVersion: v2
|
||||||
|
created: "2023-03-30T12:04:56.158073257Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -280,7 +392,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.42.0.tgz
|
- https://chart.onechart.dev/onechart-0.42.0.tgz
|
||||||
version: 0.42.0
|
version: 0.42.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.701632178Z"
|
created: "2023-03-30T12:04:56.157284565Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -294,7 +406,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.41.0.tgz
|
- https://chart.onechart.dev/onechart-0.41.0.tgz
|
||||||
version: 0.41.0
|
version: 0.41.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.700684174Z"
|
created: "2023-03-30T12:04:56.156297475Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -308,7 +420,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.40.0.tgz
|
- https://chart.onechart.dev/onechart-0.40.0.tgz
|
||||||
version: 0.40.0
|
version: 0.40.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.699403168Z"
|
created: "2023-03-30T12:04:56.155063787Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -322,7 +434,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.39.0.tgz
|
- https://chart.onechart.dev/onechart-0.39.0.tgz
|
||||||
version: 0.39.0
|
version: 0.39.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.698262263Z"
|
created: "2023-03-30T12:04:56.1536372Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -336,7 +448,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.38.0.tgz
|
- https://chart.onechart.dev/onechart-0.38.0.tgz
|
||||||
version: 0.38.0
|
version: 0.38.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.697309459Z"
|
created: "2023-03-30T12:04:56.152242714Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -350,7 +462,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.37.0.tgz
|
- https://chart.onechart.dev/onechart-0.37.0.tgz
|
||||||
version: 0.37.0
|
version: 0.37.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.696357554Z"
|
created: "2023-03-30T12:04:56.151466022Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -364,7 +476,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.36.0.tgz
|
- https://chart.onechart.dev/onechart-0.36.0.tgz
|
||||||
version: 0.36.0
|
version: 0.36.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.69536365Z"
|
created: "2023-03-30T12:04:56.150699129Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -378,7 +490,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.35.0.tgz
|
- https://chart.onechart.dev/onechart-0.35.0.tgz
|
||||||
version: 0.35.0
|
version: 0.35.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.693780542Z"
|
created: "2023-03-30T12:04:56.149947336Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -392,7 +504,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.34.0.tgz
|
- https://chart.onechart.dev/onechart-0.34.0.tgz
|
||||||
version: 0.34.0
|
version: 0.34.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.690814029Z"
|
created: "2023-03-30T12:04:56.149195344Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -406,7 +518,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.33.0.tgz
|
- https://chart.onechart.dev/onechart-0.33.0.tgz
|
||||||
version: 0.33.0
|
version: 0.33.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.690026925Z"
|
created: "2023-03-30T12:04:56.148447751Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -420,7 +532,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.32.0.tgz
|
- https://chart.onechart.dev/onechart-0.32.0.tgz
|
||||||
version: 0.32.0
|
version: 0.32.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.689219522Z"
|
created: "2023-03-30T12:04:56.147666959Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -434,7 +546,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.31.0.tgz
|
- https://chart.onechart.dev/onechart-0.31.0.tgz
|
||||||
version: 0.31.0
|
version: 0.31.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.688357718Z"
|
created: "2023-03-30T12:04:56.146934166Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -448,7 +560,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.30.0.tgz
|
- https://chart.onechart.dev/onechart-0.30.0.tgz
|
||||||
version: 0.30.0
|
version: 0.30.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.686472409Z"
|
created: "2023-03-30T12:04:56.14543228Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -462,7 +574,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.29.0.tgz
|
- https://chart.onechart.dev/onechart-0.29.0.tgz
|
||||||
version: 0.29.0
|
version: 0.29.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.685613405Z"
|
created: "2023-03-30T12:04:56.144378091Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -476,7 +588,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.28.0.tgz
|
- https://chart.onechart.dev/onechart-0.28.0.tgz
|
||||||
version: 0.28.0
|
version: 0.28.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.684744801Z"
|
created: "2023-03-30T12:04:56.128636644Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -490,7 +602,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.27.0.tgz
|
- https://chart.onechart.dev/onechart-0.27.0.tgz
|
||||||
version: 0.27.0
|
version: 0.27.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.683801697Z"
|
created: "2023-03-30T12:04:56.127905651Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -504,7 +616,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.27.0-rc3.tgz
|
- https://chart.onechart.dev/onechart-0.27.0-rc3.tgz
|
||||||
version: 0.27.0-rc3
|
version: 0.27.0-rc3
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.68231429Z"
|
created: "2023-03-30T12:04:56.127204458Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -518,7 +630,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.27.0-rc2.tgz
|
- https://chart.onechart.dev/onechart-0.27.0-rc2.tgz
|
||||||
version: 0.27.0-rc2
|
version: 0.27.0-rc2
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.681379586Z"
|
created: "2023-03-30T12:04:56.126503665Z"
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: file://../common
|
repository: file://../common
|
||||||
@@ -532,7 +644,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.27.0-rc1.tgz
|
- https://chart.onechart.dev/onechart-0.27.0-rc1.tgz
|
||||||
version: 0.27.0-rc1
|
version: 0.27.0-rc1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.680410982Z"
|
created: "2023-03-30T12:04:56.125791971Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 3563a30dba0b6a9c7a1a3df358ca5c41e952882fd2f1bbe33c8103536870d651
|
digest: 3563a30dba0b6a9c7a1a3df358ca5c41e952882fd2f1bbe33c8103536870d651
|
||||||
@@ -542,7 +654,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.26.0.tgz
|
- https://chart.onechart.dev/onechart-0.26.0.tgz
|
||||||
version: 0.26.0
|
version: 0.26.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.678705374Z"
|
created: "2023-03-30T12:04:56.125264377Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: efcbabde8193f1c3ecb34e4ede8f5efead1f77d8096180f4e8640ff94df07461
|
digest: efcbabde8193f1c3ecb34e4ede8f5efead1f77d8096180f4e8640ff94df07461
|
||||||
@@ -552,7 +664,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.25.0.tgz
|
- https://chart.onechart.dev/onechart-0.25.0.tgz
|
||||||
version: 0.25.0
|
version: 0.25.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.677553069Z"
|
created: "2023-03-30T12:04:56.124738482Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 59f1389268efb3d970f84cae968e3ecbde57015df1201411f9f46becb4b09844
|
digest: 59f1389268efb3d970f84cae968e3ecbde57015df1201411f9f46becb4b09844
|
||||||
@@ -562,7 +674,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.24.1.tgz
|
- https://chart.onechart.dev/onechart-0.24.1.tgz
|
||||||
version: 0.24.1
|
version: 0.24.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.676623264Z"
|
created: "2023-03-30T12:04:56.124205987Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 74b6fdf49a9fa5327fc0639f1d97f0cf553f89030c01379f3c91a5adb6f8a0f1
|
digest: 74b6fdf49a9fa5327fc0639f1d97f0cf553f89030c01379f3c91a5adb6f8a0f1
|
||||||
@@ -572,7 +684,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.24.0.tgz
|
- https://chart.onechart.dev/onechart-0.24.0.tgz
|
||||||
version: 0.24.0
|
version: 0.24.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.675976261Z"
|
created: "2023-03-30T12:04:56.123639092Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: f8e444c2d5c5a4e73b76a971effda5246d3200427be45c2fb546bc990f197ecc
|
digest: f8e444c2d5c5a4e73b76a971effda5246d3200427be45c2fb546bc990f197ecc
|
||||||
@@ -582,7 +694,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.23.0.tgz
|
- https://chart.onechart.dev/onechart-0.23.0.tgz
|
||||||
version: 0.23.0
|
version: 0.23.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.675435759Z"
|
created: "2023-03-30T12:04:56.123108398Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: dfad2865c3eb54f0366300ef63b8ba1863ca69aa27e5ca5d3512c0d799d004d3
|
digest: dfad2865c3eb54f0366300ef63b8ba1863ca69aa27e5ca5d3512c0d799d004d3
|
||||||
@@ -592,7 +704,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.22.0.tgz
|
- https://chart.onechart.dev/onechart-0.22.0.tgz
|
||||||
version: 0.22.0
|
version: 0.22.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.674872256Z"
|
created: "2023-03-30T12:04:56.122494704Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 1b837cdefcb7025c40bffdd620a0f116df5ccb9023ac6a8c538bd8e77b3eb80a
|
digest: 1b837cdefcb7025c40bffdd620a0f116df5ccb9023ac6a8c538bd8e77b3eb80a
|
||||||
@@ -602,7 +714,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.21.0.tgz
|
- https://chart.onechart.dev/onechart-0.21.0.tgz
|
||||||
version: 0.21.0
|
version: 0.21.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.674272954Z"
|
created: "2023-03-30T12:04:56.120607222Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: a4f5741b46b89cd4328fbd96f96d85d53bae64b526730de5097ec33639c9c54f
|
digest: a4f5741b46b89cd4328fbd96f96d85d53bae64b526730de5097ec33639c9c54f
|
||||||
@@ -612,7 +724,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.20.0.tgz
|
- https://chart.onechart.dev/onechart-0.20.0.tgz
|
||||||
version: 0.20.0
|
version: 0.20.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.67342545Z"
|
created: "2023-03-30T12:04:56.118870839Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 59dd16db4f8519d3922da349aabcc2daec8385fc8a98d0f3163a84b98cc12f61
|
digest: 59dd16db4f8519d3922da349aabcc2daec8385fc8a98d0f3163a84b98cc12f61
|
||||||
@@ -622,7 +734,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.19.0.tgz
|
- https://chart.onechart.dev/onechart-0.19.0.tgz
|
||||||
version: 0.19.0
|
version: 0.19.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.672336745Z"
|
created: "2023-03-30T12:04:56.118195845Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 74c4c6a448e66929dfcafc5a641b5bdbaa8af6832c6065b02ce756dfeb3fc438
|
digest: 74c4c6a448e66929dfcafc5a641b5bdbaa8af6832c6065b02ce756dfeb3fc438
|
||||||
@@ -632,7 +744,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.18.0.tgz
|
- https://chart.onechart.dev/onechart-0.18.0.tgz
|
||||||
version: 0.18.0
|
version: 0.18.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.671531941Z"
|
created: "2023-03-30T12:04:56.117592451Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: e1ba0bb54c3a3e13b661bb608839c7013d12e24d0437581ebfdbf5ce4a283d4d
|
digest: e1ba0bb54c3a3e13b661bb608839c7013d12e24d0437581ebfdbf5ce4a283d4d
|
||||||
@@ -642,7 +754,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.17.0.tgz
|
- https://chart.onechart.dev/onechart-0.17.0.tgz
|
||||||
version: 0.17.0
|
version: 0.17.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.670806838Z"
|
created: "2023-03-30T12:04:56.117015057Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 596350a4977b305e4d5aae16dd8dcca62a17ea5cec9f444aacd82a12d6b3dcfe
|
digest: 596350a4977b305e4d5aae16dd8dcca62a17ea5cec9f444aacd82a12d6b3dcfe
|
||||||
@@ -652,7 +764,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.16.0.tgz
|
- https://chart.onechart.dev/onechart-0.16.0.tgz
|
||||||
version: 0.16.0
|
version: 0.16.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.670225735Z"
|
created: "2023-03-30T12:04:56.116460262Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: d1a5a9e9bff274f32f6849bc58b201c7886240b94dd6b70b5cf3411d9ad03393
|
digest: d1a5a9e9bff274f32f6849bc58b201c7886240b94dd6b70b5cf3411d9ad03393
|
||||||
@@ -662,7 +774,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.15.3.tgz
|
- https://chart.onechart.dev/onechart-0.15.3.tgz
|
||||||
version: 0.15.3
|
version: 0.15.3
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.669612432Z"
|
created: "2023-03-30T12:04:56.115902168Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 626410479f67bbbfa7e7fc94f6dfd8aae50a2bdf9fc72ec395c835dacbd5dbe7
|
digest: 626410479f67bbbfa7e7fc94f6dfd8aae50a2bdf9fc72ec395c835dacbd5dbe7
|
||||||
@@ -672,7 +784,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.15.2.tgz
|
- https://chart.onechart.dev/onechart-0.15.2.tgz
|
||||||
version: 0.15.2
|
version: 0.15.2
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.667979725Z"
|
created: "2023-03-30T12:04:56.115390773Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: e6d237aff4abedee6deb5ba57e8183c7598b255d40afdd04c03f73014f706aa3
|
digest: e6d237aff4abedee6deb5ba57e8183c7598b255d40afdd04c03f73014f706aa3
|
||||||
@@ -682,7 +794,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.15.1.tgz
|
- https://chart.onechart.dev/onechart-0.15.1.tgz
|
||||||
version: 0.15.1
|
version: 0.15.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.666070716Z"
|
created: "2023-03-30T12:04:56.114882778Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: d45fc4cc214bc94e4c2c10d6432562d7e65ee5e55226f677aafdfe101d7f6e7f
|
digest: d45fc4cc214bc94e4c2c10d6432562d7e65ee5e55226f677aafdfe101d7f6e7f
|
||||||
@@ -692,7 +804,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.15.0.tgz
|
- https://chart.onechart.dev/onechart-0.15.0.tgz
|
||||||
version: 0.15.0
|
version: 0.15.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.665268513Z"
|
created: "2023-03-30T12:04:56.114379083Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 7e61a72a3400e09c44539094558a2084621239015132d20551c4593be3b5bede
|
digest: 7e61a72a3400e09c44539094558a2084621239015132d20551c4593be3b5bede
|
||||||
@@ -702,7 +814,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.14.0.tgz
|
- https://chart.onechart.dev/onechart-0.14.0.tgz
|
||||||
version: 0.14.0
|
version: 0.14.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.664494409Z"
|
created: "2023-03-30T12:04:56.113889887Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 743a9b552233770713f0c22edbe8cf4f55c890a59106e1f33055c1cb31be5a27
|
digest: 743a9b552233770713f0c22edbe8cf4f55c890a59106e1f33055c1cb31be5a27
|
||||||
@@ -712,7 +824,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.13.2.tgz
|
- https://chart.onechart.dev/onechart-0.13.2.tgz
|
||||||
version: 0.13.2
|
version: 0.13.2
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.663832206Z"
|
created: "2023-03-30T12:04:56.113393792Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 02bf9537e13cea0da9dc3bfbcdd45d51576354cb18b7c1c7cec76f829e20105f
|
digest: 02bf9537e13cea0da9dc3bfbcdd45d51576354cb18b7c1c7cec76f829e20105f
|
||||||
@@ -722,7 +834,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.13.1.tgz
|
- https://chart.onechart.dev/onechart-0.13.1.tgz
|
||||||
version: 0.13.1
|
version: 0.13.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.663298504Z"
|
created: "2023-03-30T12:04:56.112911697Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 5183ed825c4f255ca5a4f0ffeb8c92bbad3c43b42fc1b798f1f1fc6de2a30bef
|
digest: 5183ed825c4f255ca5a4f0ffeb8c92bbad3c43b42fc1b798f1f1fc6de2a30bef
|
||||||
@@ -732,7 +844,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.13.0.tgz
|
- https://chart.onechart.dev/onechart-0.13.0.tgz
|
||||||
version: 0.13.0
|
version: 0.13.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.6626084Z"
|
created: "2023-03-30T12:04:56.112437201Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: e131a502d12a6b074453f1da8d0d1ca7145e80a025f31252b24cc3d62375a4c1
|
digest: e131a502d12a6b074453f1da8d0d1ca7145e80a025f31252b24cc3d62375a4c1
|
||||||
@@ -742,7 +854,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.12.2.tgz
|
- https://chart.onechart.dev/onechart-0.12.2.tgz
|
||||||
version: 0.12.2
|
version: 0.12.2
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.662052798Z"
|
created: "2023-03-30T12:04:56.111969206Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 8e1a25d18a546c4ec5e970991301a08e38495a964a8f6e0a2ee97f92c41c9691
|
digest: 8e1a25d18a546c4ec5e970991301a08e38495a964a8f6e0a2ee97f92c41c9691
|
||||||
@@ -752,7 +864,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.12.1.tgz
|
- https://chart.onechart.dev/onechart-0.12.1.tgz
|
||||||
version: 0.12.1
|
version: 0.12.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.661469595Z"
|
created: "2023-03-30T12:04:56.111431511Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: f38a6f2fbf5c847b00a9140ecd004e0bf667d859aa83d8dac4a2d0eecd1a361f
|
digest: f38a6f2fbf5c847b00a9140ecd004e0bf667d859aa83d8dac4a2d0eecd1a361f
|
||||||
@@ -762,7 +874,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.12.0.tgz
|
- https://chart.onechart.dev/onechart-0.12.0.tgz
|
||||||
version: 0.12.0
|
version: 0.12.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.660785092Z"
|
created: "2023-03-30T12:04:56.110842317Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 75c16f84b5e99aad5aa7203f5c1ce2a9589d85b89afec4e161a2e0344a522c17
|
digest: 75c16f84b5e99aad5aa7203f5c1ce2a9589d85b89afec4e161a2e0344a522c17
|
||||||
@@ -772,7 +884,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.11.0.tgz
|
- https://chart.onechart.dev/onechart-0.11.0.tgz
|
||||||
version: 0.11.0
|
version: 0.11.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.66027359Z"
|
created: "2023-03-30T12:04:56.110286022Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 40f1166e858d35cb237debd1390187884641b0e8c29a80aaa195b66b0ee73516
|
digest: 40f1166e858d35cb237debd1390187884641b0e8c29a80aaa195b66b0ee73516
|
||||||
@@ -782,7 +894,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.10.0.tgz
|
- https://chart.onechart.dev/onechart-0.10.0.tgz
|
||||||
version: 0.10.0
|
version: 0.10.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.708796511Z"
|
created: "2023-03-30T12:04:56.16596978Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: cb42b08b463b401f6718bba7c171ee55c173021c5101ea1b3068ef3899a6e164
|
digest: cb42b08b463b401f6718bba7c171ee55c173021c5101ea1b3068ef3899a6e164
|
||||||
@@ -792,7 +904,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.9.0.tgz
|
- https://chart.onechart.dev/onechart-0.9.0.tgz
|
||||||
version: 0.9.0
|
version: 0.9.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.708328109Z"
|
created: "2023-03-30T12:04:56.165556584Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: ce046d209a9e8fa07766712492cc896451473fafca129dbc9c675107d0e39c52
|
digest: ce046d209a9e8fa07766712492cc896451473fafca129dbc9c675107d0e39c52
|
||||||
@@ -802,7 +914,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.8.2.tgz
|
- https://chart.onechart.dev/onechart-0.8.2.tgz
|
||||||
version: 0.8.2
|
version: 0.8.2
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.707696106Z"
|
created: "2023-03-30T12:04:56.165179188Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 422d7e6ea1bed530d4cd5e23417b229772a6fe2e835828ca282a3e6c9b646b2b
|
digest: 422d7e6ea1bed530d4cd5e23417b229772a6fe2e835828ca282a3e6c9b646b2b
|
||||||
@@ -812,7 +924,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.8.1.tgz
|
- https://chart.onechart.dev/onechart-0.8.1.tgz
|
||||||
version: 0.8.1
|
version: 0.8.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.707055003Z"
|
created: "2023-03-30T12:04:56.164641393Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 8001bd02fc90ad66da7941c136ee8d0e665ea90b6e1ac27d82b048f2b12b3964
|
digest: 8001bd02fc90ad66da7941c136ee8d0e665ea90b6e1ac27d82b048f2b12b3964
|
||||||
@@ -822,7 +934,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.8.0.tgz
|
- https://chart.onechart.dev/onechart-0.8.0.tgz
|
||||||
version: 0.8.0
|
version: 0.8.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.705458396Z"
|
created: "2023-03-30T12:04:56.163842901Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: d1454b430eb7131d0d450f7c0a8a6698278893c61e03d48649a8112dfcf42b72
|
digest: d1454b430eb7131d0d450f7c0a8a6698278893c61e03d48649a8112dfcf42b72
|
||||||
@@ -832,7 +944,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.7.1.tgz
|
- https://chart.onechart.dev/onechart-0.7.1.tgz
|
||||||
version: 0.7.1
|
version: 0.7.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.704901293Z"
|
created: "2023-03-30T12:04:56.163381806Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 4bf90835f287917671ec40b5b395da9332cf18e70f248d250f8d5a72360dcb4e
|
digest: 4bf90835f287917671ec40b5b395da9332cf18e70f248d250f8d5a72360dcb4e
|
||||||
@@ -842,7 +954,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.7.0.tgz
|
- https://chart.onechart.dev/onechart-0.7.0.tgz
|
||||||
version: 0.7.0
|
version: 0.7.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.70421279Z"
|
created: "2023-03-30T12:04:56.162870011Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 0cade489fc74a040f5e7f71d01c6fa00d3f68b4752a4d8234ccf2c1504b4c0a1
|
digest: 0cade489fc74a040f5e7f71d01c6fa00d3f68b4752a4d8234ccf2c1504b4c0a1
|
||||||
@@ -852,7 +964,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.6.1.tgz
|
- https://chart.onechart.dev/onechart-0.6.1.tgz
|
||||||
version: 0.6.1
|
version: 0.6.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.703712688Z"
|
created: "2023-03-30T12:04:56.162288016Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: d607820a7e104eaaa88c153c1f2f7f409ef4c612ad747caeb3a671cf3fce03d4
|
digest: d607820a7e104eaaa88c153c1f2f7f409ef4c612ad747caeb3a671cf3fce03d4
|
||||||
@@ -862,7 +974,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.6.0.tgz
|
- https://chart.onechart.dev/onechart-0.6.0.tgz
|
||||||
version: 0.6.0
|
version: 0.6.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.703375286Z"
|
created: "2023-03-30T12:04:56.161969919Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: ddf7cf87402095d62855898744b805115fdf86c4b295e0a4def0c50408fd9138
|
digest: ddf7cf87402095d62855898744b805115fdf86c4b295e0a4def0c50408fd9138
|
||||||
@@ -872,7 +984,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.5.1.tgz
|
- https://chart.onechart.dev/onechart-0.5.1.tgz
|
||||||
version: 0.5.1
|
version: 0.5.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.703017585Z"
|
created: "2023-03-30T12:04:56.161703122Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: adf3c2cf3a27e58ec75620599e0e1c2031a7410a061a590317beeff6d8a9ad69
|
digest: adf3c2cf3a27e58ec75620599e0e1c2031a7410a061a590317beeff6d8a9ad69
|
||||||
@@ -882,7 +994,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.5.0.tgz
|
- https://chart.onechart.dev/onechart-0.5.0.tgz
|
||||||
version: 0.5.0
|
version: 0.5.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.699708969Z"
|
created: "2023-03-30T12:04:56.155399783Z"
|
||||||
description: One chart to rule them all. A generic Helm chart for your application
|
description: One chart to rule them all. A generic Helm chart for your application
|
||||||
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
deployments. Because no-one can remember the Kubernetes yaml syntax.
|
||||||
digest: 8dab33263c4e632aeb4656c666871440b589497b70e76a1d6c3a5e3db1a30bba
|
digest: 8dab33263c4e632aeb4656c666871440b589497b70e76a1d6c3a5e3db1a30bba
|
||||||
@@ -892,7 +1004,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.4.0.tgz
|
- https://chart.onechart.dev/onechart-0.4.0.tgz
|
||||||
version: 0.4.0
|
version: 0.4.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.687493414Z"
|
created: "2023-03-30T12:04:56.146180873Z"
|
||||||
description: A generic Helm chart for your application deployments
|
description: A generic Helm chart for your application deployments
|
||||||
digest: fbaf6139e0ef8ad9a87cc1e41a97c7d25fdcf7ea17fa6364952f1a851a87480a
|
digest: fbaf6139e0ef8ad9a87cc1e41a97c7d25fdcf7ea17fa6364952f1a851a87480a
|
||||||
name: onechart
|
name: onechart
|
||||||
@@ -901,7 +1013,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.3.2.tgz
|
- https://chart.onechart.dev/onechart-0.3.2.tgz
|
||||||
version: 0.3.2
|
version: 0.3.2
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.687178212Z"
|
created: "2023-03-30T12:04:56.145942175Z"
|
||||||
description: A generic Helm chart for your application deployments
|
description: A generic Helm chart for your application deployments
|
||||||
digest: bd6f5b1865ab9b05fc6925c163ab8045235bd2723dba31f09d5083d24322d1f8
|
digest: bd6f5b1865ab9b05fc6925c163ab8045235bd2723dba31f09d5083d24322d1f8
|
||||||
name: onechart
|
name: onechart
|
||||||
@@ -910,7 +1022,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.3.1.tgz
|
- https://chart.onechart.dev/onechart-0.3.1.tgz
|
||||||
version: 0.3.1
|
version: 0.3.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.686786111Z"
|
created: "2023-03-30T12:04:56.145698378Z"
|
||||||
description: A generic Helm chart for your application deployments
|
description: A generic Helm chart for your application deployments
|
||||||
digest: c79cef21eceab948144a289298cdf1e20e77a0782a883d7d65f9e709ccbbc271
|
digest: c79cef21eceab948144a289298cdf1e20e77a0782a883d7d65f9e709ccbbc271
|
||||||
name: onechart
|
name: onechart
|
||||||
@@ -919,7 +1031,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.3.0.tgz
|
- https://chart.onechart.dev/onechart-0.3.0.tgz
|
||||||
version: 0.3.0
|
version: 0.3.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.673732451Z"
|
created: "2023-03-30T12:04:56.119188436Z"
|
||||||
description: A generic Helm chart for your application deployments
|
description: A generic Helm chart for your application deployments
|
||||||
digest: dd814ac5d08d5e6163a1b769df6803f5cb0f09d906045086dfcc5be522bb1ec3
|
digest: dd814ac5d08d5e6163a1b769df6803f5cb0f09d906045086dfcc5be522bb1ec3
|
||||||
name: onechart
|
name: onechart
|
||||||
@@ -928,7 +1040,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.2.0.tgz
|
- https://chart.onechart.dev/onechart-0.2.0.tgz
|
||||||
version: 0.2.0
|
version: 0.2.0
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.659803888Z"
|
created: "2023-03-30T12:04:56.109081734Z"
|
||||||
description: A generic Helm chart for your application deployments
|
description: A generic Helm chart for your application deployments
|
||||||
digest: e46062df8053840cbfbba26c0a66a843a79f15a0b43a145ed019327513bd5098
|
digest: e46062df8053840cbfbba26c0a66a843a79f15a0b43a145ed019327513bd5098
|
||||||
name: onechart
|
name: onechart
|
||||||
@@ -937,7 +1049,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.1.2.tgz
|
- https://chart.onechart.dev/onechart-0.1.2.tgz
|
||||||
version: 0.1.2
|
version: 0.1.2
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.659559087Z"
|
created: "2023-03-30T12:04:56.108671438Z"
|
||||||
description: A generic Helm chart for your application deployments
|
description: A generic Helm chart for your application deployments
|
||||||
digest: a7bbc8b7dcc008e89156cd1830282b7d39c0592e82ccdcefb77a25a42eca2a3d
|
digest: a7bbc8b7dcc008e89156cd1830282b7d39c0592e82ccdcefb77a25a42eca2a3d
|
||||||
name: onechart
|
name: onechart
|
||||||
@@ -946,7 +1058,7 @@ entries:
|
|||||||
- https://chart.onechart.dev/onechart-0.1.1.tgz
|
- https://chart.onechart.dev/onechart-0.1.1.tgz
|
||||||
version: 0.1.1
|
version: 0.1.1
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
created: "2023-02-17T14:19:45.659300185Z"
|
created: "2023-03-30T12:04:56.108226942Z"
|
||||||
description: A generic Helm chart for your application deployments
|
description: A generic Helm chart for your application deployments
|
||||||
digest: 1ed8c0645abdae6c950526e9c5410dc056847a11700dc7def5f1c55eb7de0cd4
|
digest: 1ed8c0645abdae6c950526e9c5410dc056847a11700dc7def5f1c55eb7de0cd4
|
||||||
name: onechart
|
name: onechart
|
||||||
@@ -954,4 +1066,14 @@ entries:
|
|||||||
urls:
|
urls:
|
||||||
- https://chart.onechart.dev/onechart-0.1.0.tgz
|
- https://chart.onechart.dev/onechart-0.1.0.tgz
|
||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
generated: "2023-02-17T14:19:45.64503712Z"
|
static-site:
|
||||||
|
- apiVersion: v2
|
||||||
|
created: "2023-03-30T12:04:56.166434176Z"
|
||||||
|
description: Chart to build and deploy static sites
|
||||||
|
digest: f8946fb4a7c6139ae70dc5327a3814b1c23a5b1c9456850f6b520e9ca2721cfe
|
||||||
|
name: static-site
|
||||||
|
type: application
|
||||||
|
urls:
|
||||||
|
- https://chart.onechart.dev/static-site-0.1.0.tgz
|
||||||
|
version: 0.1.0
|
||||||
|
generated: "2023-03-30T12:04:56.093371287Z"
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user