From 95b686d20c64424b0f673e816259cd82918ec8a1 Mon Sep 17 00:00:00 2001 From: Laszlo Fogas Date: Thu, 23 Jun 2022 13:54:37 +0200 Subject: [PATCH] Simplifying namespaces chart (#46) --- Makefile | 8 +- charts/namespaces/Chart.yaml | 2 +- charts/namespaces/fixture.yaml | 18 + charts/namespaces/templates/limit-range.yaml | 48 +- .../namespaces/templates/resource-quota.yaml | 24 +- charts/namespaces/tests/limit_range_test.yaml | 58 +- charts/namespaces/tests/ns_test.yaml | 3 + .../namespaces/tests/resource_quota_test.yaml | 65 +- charts/namespaces/values.schema.json | 715 ------------------ charts/namespaces/values.yaml | 41 +- docs/index.yaml | 161 ++-- docs/namespaces-0.3.0.tgz | Bin 0 -> 1432 bytes 12 files changed, 179 insertions(+), 964 deletions(-) create mode 100644 charts/namespaces/fixture.yaml delete mode 100644 charts/namespaces/values.schema.json create mode 100644 docs/namespaces-0.3.0.tgz diff --git a/Makefile b/Makefile index 5c32ed9..c136e0f 100644 --- a/Makefile +++ b/Makefile @@ -12,20 +12,20 @@ kubeval: rm -rf manifests && true mkdir manifests helm template charts/onechart --output-dir manifests - find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.13.0 find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.18.0 + find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.23.0 rm -rf manifests && true mkdir manifests helm template charts/cron-job --output-dir manifests - find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.13.0 find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.18.0 + find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.23.0 rm -rf manifests && true mkdir manifests - helm template charts/namespaces --output-dir manifests - find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.13.0 + helm template charts/namespaces --output-dir manifests -f charts/namespaces/fixture.yaml find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.18.0 + find manifests/ -name '*.yaml' | xargs kubeval --ignore-missing-schemas -v 1.23.0 test: helm dependency update charts/onechart diff --git a/charts/namespaces/Chart.yaml b/charts/namespaces/Chart.yaml index ea080b4..b05618d 100644 --- a/charts/namespaces/Chart.yaml +++ b/charts/namespaces/Chart.yaml @@ -15,4 +15,4 @@ 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.2.1 +version: 0.3.0 diff --git a/charts/namespaces/fixture.yaml b/charts/namespaces/fixture.yaml new file mode 100644 index 0000000..ea8628f --- /dev/null +++ b/charts/namespaces/fixture.yaml @@ -0,0 +1,18 @@ +namespaces: + - name: staging + quota: + cpu: 32 + memory: "64Gi" + storage: "500Gi" + overcommit: + cpu: 1 + memory: 1 + podMaximumResources: + cpu: 4 + memory: "8Gi" + podDefaultResources: + cpu: "200m" + memory: "200Mi" + podResourceOvercommit: + cpu: 2 + memory: 1 diff --git a/charts/namespaces/templates/limit-range.yaml b/charts/namespaces/templates/limit-range.yaml index e682302..c0f3da8 100644 --- a/charts/namespaces/templates/limit-range.yaml +++ b/charts/namespaces/templates/limit-range.yaml @@ -1,22 +1,5 @@ {{- range .Values.namespaces }} -{{- $limits := $.Values.pod.limits }} -{{- if .pod }} -{{- if .pod.limits }} -{{- $limits = .pod.limits }} -{{- end }} -{{- end }} -{{- $overcommit := $.Values.pod.overcommit }} -{{- if .pod }} -{{- if .pod.overcommit }} -{{- $overcommit = .pod.overcommit }} -{{- end }} -{{- end }} -{{- $defaults := $.Values.pod.defaults }} -{{- if .pod }} -{{- if .pod.defaults }} -{{- $defaults = .pod.defaults }} -{{- end }} -{{- end }} +{{- if and .podMaximumResources (and .podDefaultResources .podResourceOvercommit) }} --- apiVersion: v1 kind: LimitRange @@ -26,19 +9,26 @@ metadata: spec: limits: - type: Container + {{- if .podMaximumResources }} max: - cpu: 4 - memory: "8Gi" - min: - cpu: "100m" - memory: "50Mi" + cpu: {{ .podMaximumResources.cpu }} + memory: {{ .podMaximumResources.memory }} + {{- end }} + {{- if .podDefaultResources }} default: - cpu: {{ $defaults.cpu }} - memory: {{ $defaults.memory }} + cpu: {{ .podDefaultResources.cpu }} + memory: {{ .podDefaultResources.memory }} defaultRequest: - cpu: {{ $defaults.cpu }} - memory: {{ $defaults.memory }} + cpu: {{ .podDefaultResources.cpu }} + memory: {{ .podDefaultResources.memory }} + {{- end }} maxLimitRequestRatio: - cpu: {{ $overcommit.cpu }} - memory: {{ $overcommit.memory }} + {{- if .podResourceOvercommit }} + cpu: {{ .podResourceOvercommit.cpu }} + memory: {{ .podResourceOvercommit.memory }} + {{ else }} + cpu: 1 + memory: 1 + {{- end }} +{{- end }} {{- end }} diff --git a/charts/namespaces/templates/resource-quota.yaml b/charts/namespaces/templates/resource-quota.yaml index b819d4a..76a5bb4 100644 --- a/charts/namespaces/templates/resource-quota.yaml +++ b/charts/namespaces/templates/resource-quota.yaml @@ -1,16 +1,5 @@ {{- range .Values.namespaces }} -{{- $budget := $.Values.namespace.budget }} -{{- if .namespace }} -{{- if .namespace.budget }} -{{- $budget = .namespace.budget }} -{{- end }} -{{- end }} -{{- $overcommit := $.Values.namespace.overcommit }} -{{- if .namespace }} -{{- if .namespace.overcommit }} -{{- $overcommit = .namespace.overcommit }} -{{- end }} -{{- end }} +{{- if and .quota .overcommit }} --- apiVersion: v1 kind: ResourceQuota @@ -18,9 +7,10 @@ metadata: name: {{ .name }} spec: hard: - limits.cpu: {{ $budget.cpu | mul $overcommit.cpu }} - limits.memory: {{ $budget.memory | regexFind "[1-9]+" | mul $overcommit.memory }}{{ $budget.memory | regexFind "[a-zA-Z]+" }} - requests.cpu: {{ $budget.cpu }} - requests.memory: {{ $budget.memory }} - requests.storage: {{ $budget.storage }} + limits.cpu: {{ .quota.cpu | mul .overcommit.cpu }} + limits.memory: {{ .quota.memory | regexFind "[1-9]+" | mul .overcommit.memory }}{{ .quota.memory | regexFind "[a-zA-Z]+" }} + requests.cpu: {{ .quota.cpu }} + requests.memory: {{ .quota.memory }} + requests.storage: {{ .quota.storage }} {{- end }} +{{- end -}} diff --git a/charts/namespaces/tests/limit_range_test.yaml b/charts/namespaces/tests/limit_range_test.yaml index e29448c..fe15e59 100644 --- a/charts/namespaces/tests/limit_range_test.yaml +++ b/charts/namespaces/tests/limit_range_test.yaml @@ -2,52 +2,19 @@ suite: test deployment templates: - limit-range.yaml tests: - - it: Should set default limits - set: - pod: - limits: - cpu: 4 - memory: "8Gi" - defaults: - cpu: "200m" - memory: "200Mi" - overcommit: - cpu: 10 - memory: 2 - asserts: - - equal: - path: spec.limits - value: - - type: Container - max: - cpu: 4 - memory: "8Gi" - min: - cpu: "100m" - memory: "50Mi" - default: - cpu: "200m" - memory: "200Mi" - defaultRequest: - cpu: "200m" - memory: "200Mi" - maxLimitRequestRatio: - cpu: 10 - memory: 2 - it: Should set namespace specific limits set: namespaces: - name: staging - pod: - limits: - cpu: 4 - memory: "8Gi" - defaults: - cpu: "200m" - memory: "200Mi" - overcommit: - cpu: 10 - memory: 2 + podMaximumResources: + cpu: 4 + memory: "8Gi" + podDefaultResources: + cpu: "200m" + memory: "200Mi" + podResourceOvercommit: + cpu: 2 + memory: 1 asserts: - equal: path: spec.limits @@ -56,9 +23,6 @@ tests: max: cpu: 4 memory: "8Gi" - min: - cpu: "100m" - memory: "50Mi" default: cpu: "200m" memory: "200Mi" @@ -66,5 +30,5 @@ tests: cpu: "200m" memory: "200Mi" maxLimitRequestRatio: - cpu: 10 - memory: 2 + cpu: 2 + memory: 1 diff --git a/charts/namespaces/tests/ns_test.yaml b/charts/namespaces/tests/ns_test.yaml index 6331994..27af003 100644 --- a/charts/namespaces/tests/ns_test.yaml +++ b/charts/namespaces/tests/ns_test.yaml @@ -11,6 +11,9 @@ tests: path: metadata.name value: staging - it: Should not set annotations if none provided in values + set: + namespaces: + - name: staging asserts: - isNull: path: metadata.annotations diff --git a/charts/namespaces/tests/resource_quota_test.yaml b/charts/namespaces/tests/resource_quota_test.yaml index c0703bc..39ed1f2 100644 --- a/charts/namespaces/tests/resource_quota_test.yaml +++ b/charts/namespaces/tests/resource_quota_test.yaml @@ -2,16 +2,37 @@ suite: test deployment templates: - resource-quota.yaml tests: - - it: Should set default quota values + - it: Should set namespace specific quotas set: - namespace: - budget: - cpu: 32 - memory: "64Gi" - storage: "500Gi" - overcommit: - cpu: 2 - memory: 1 + namespaces: + - name: staging + quota: + cpu: 32 + memory: "64Gi" + storage: "500Gi" + overcommit: + cpu: 1 + memory: 1 + asserts: + - equal: + path: spec.hard + value: + limits.cpu: 32 + limits.memory: "64Gi" + requests.cpu: 32 + requests.memory: "64Gi" + requests.storage: "500Gi" + - it: Should handle overcommit + set: + namespaces: + - name: staging + quota: + cpu: 32 + memory: "64Gi" + storage: "500Gi" + overcommit: + cpu: 2 + memory: 1 asserts: - equal: path: spec.hard @@ -21,29 +42,3 @@ tests: requests.cpu: 32 requests.memory: "64Gi" requests.storage: "500Gi" - - it: Should set namespace specific quotas - set: - namespaces: - - name: staging - namespace: - budget: - cpu: 8 - memory: "16Gi" - storage: "100Gi" - namespace: - budget: - cpu: 32 - memory: "64Gi" - storage: "500Gi" - overcommit: - cpu: 2 - memory: 1 - asserts: - - equal: - path: spec.hard - value: - limits.cpu: 16 - limits.memory: "16Gi" - requests.cpu: 8 - requests.memory: "16Gi" - requests.storage: "100Gi" diff --git a/charts/namespaces/values.schema.json b/charts/namespaces/values.schema.json deleted file mode 100644 index 61351ea..0000000 --- a/charts/namespaces/values.schema.json +++ /dev/null @@ -1,715 +0,0 @@ -{ - "$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": [ - { - "namespaces": [ - { - "name": "staging", - "namespace": { - "budget": { - "cpu": 32, - "memory": "64Gi", - "storage": "500Gi" - }, - "overcommit": { - "cpu": 2, - "memory": 1 - } - }, - "pod": { - "limits": { - "cpu": 4, - "memory": "8Gi" - }, - "defaults": { - "cpu": "200m", - "memory": "200Mi" - }, - "overcommit": { - "cpu": 10, - "memory": 2 - } - } - } - ], - "namespace": { - "budget": { - "cpu": 32, - "memory": "64Gi", - "storage": "500Gi" - }, - "overcommit": { - "cpu": 2, - "memory": 1 - } - }, - "pod": { - "limits": { - "cpu": 4, - "memory": "8Gi" - }, - "defaults": { - "cpu": "200m", - "memory": "200Mi" - }, - "overcommit": { - "cpu": 10, - "memory": 2 - } - } - } - ], - "required": [ - "namespaces", - "namespace", - "pod" - ], - "properties": { - "namespaces": { - "$id": "#/properties/namespaces", - "type": "array", - "title": "The namespaces schema", - "description": "An explanation about the purpose of this instance.", - "default": [], - "examples": [ - [ - { - "name": "staging", - "namespace": { - "budget": { - "cpu": 32, - "memory": "64Gi", - "storage": "500Gi" - }, - "overcommit": { - "cpu": 2, - "memory": 1 - } - }, - "pod": { - "limits": { - "cpu": 4, - "memory": "8Gi" - }, - "defaults": { - "cpu": "200m", - "memory": "200Mi" - }, - "overcommit": { - "cpu": 10, - "memory": 2 - } - } - } - ] - ], - "additionalItems": true, - "items": { - "$id": "#/properties/namespaces/items", - "anyOf": [ - { - "$id": "#/properties/namespaces/items/anyOf/0", - "type": "object", - "title": "The first anyOf schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "name": "staging", - "namespace": { - "budget": { - "cpu": 32, - "memory": "64Gi", - "storage": "500Gi" - }, - "overcommit": { - "cpu": 2, - "memory": 1 - } - }, - "pod": { - "limits": { - "cpu": 4, - "memory": "8Gi" - }, - "defaults": { - "cpu": "200m", - "memory": "200Mi" - }, - "overcommit": { - "cpu": 10, - "memory": 2 - } - } - } - ], - "required": [ - "name", - "namespace", - "pod" - ], - "properties": { - "name": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/name", - "type": "string", - "title": "The name schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "staging" - ] - }, - "namespace": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/namespace", - "type": "object", - "title": "The namespace schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "budget": { - "cpu": 32, - "memory": "64Gi", - "storage": "500Gi" - }, - "overcommit": { - "cpu": 2, - "memory": 1 - } - } - ], - "required": [ - "budget", - "overcommit" - ], - "properties": { - "budget": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/namespace/properties/budget", - "type": "object", - "title": "The budget schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": 32, - "memory": "64Gi", - "storage": "500Gi" - } - ], - "required": [ - "cpu", - "memory", - "storage" - ], - "properties": { - "cpu": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/namespace/properties/budget/properties/cpu", - "type": "integer", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 32 - ] - }, - "memory": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/namespace/properties/budget/properties/memory", - "type": "string", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "64Gi" - ] - }, - "storage": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/namespace/properties/budget/properties/storage", - "type": "string", - "title": "The storage schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "500Gi" - ] - } - }, - "additionalProperties": true - }, - "overcommit": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/namespace/properties/overcommit", - "type": "object", - "title": "The overcommit schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": 2, - "memory": 1 - } - ], - "required": [ - "cpu", - "memory" - ], - "properties": { - "cpu": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/namespace/properties/overcommit/properties/cpu", - "type": "integer", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 2 - ] - }, - "memory": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/namespace/properties/overcommit/properties/memory", - "type": "integer", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 1 - ] - } - }, - "additionalProperties": true - } - }, - "additionalProperties": true - }, - "pod": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod", - "type": "object", - "title": "The pod schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "limits": { - "cpu": 4, - "memory": "8Gi" - }, - "defaults": { - "cpu": "200m", - "memory": "200Mi" - }, - "overcommit": { - "cpu": 10, - "memory": 2 - } - } - ], - "required": [ - "limits", - "defaults", - "overcommit" - ], - "properties": { - "limits": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod/properties/limits", - "type": "object", - "title": "The limits schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": 4, - "memory": "8Gi" - } - ], - "required": [ - "cpu", - "memory" - ], - "properties": { - "cpu": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod/properties/limits/properties/cpu", - "type": "integer", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 4 - ] - }, - "memory": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod/properties/limits/properties/memory", - "type": "string", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "8Gi" - ] - } - }, - "additionalProperties": true - }, - "defaults": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod/properties/defaults", - "type": "object", - "title": "The defaults schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": "200m", - "memory": "200Mi" - } - ], - "required": [ - "cpu", - "memory" - ], - "properties": { - "cpu": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod/properties/defaults/properties/cpu", - "type": "string", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "200m" - ] - }, - "memory": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod/properties/defaults/properties/memory", - "type": "string", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "200Mi" - ] - } - }, - "additionalProperties": true - }, - "overcommit": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod/properties/overcommit", - "type": "object", - "title": "The overcommit schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": 10, - "memory": 2 - } - ], - "required": [ - "cpu", - "memory" - ], - "properties": { - "cpu": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod/properties/overcommit/properties/cpu", - "type": "integer", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 10 - ] - }, - "memory": { - "$id": "#/properties/namespaces/items/anyOf/0/properties/pod/properties/overcommit/properties/memory", - "type": "integer", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 2 - ] - } - }, - "additionalProperties": true - } - }, - "additionalProperties": true - } - }, - "additionalProperties": true - } - ] - } - }, - "namespace": { - "$id": "#/properties/namespace", - "type": "object", - "title": "The namespace schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "budget": { - "cpu": 32, - "memory": "64Gi", - "storage": "500Gi" - }, - "overcommit": { - "cpu": 2, - "memory": 1 - } - } - ], - "required": [ - "budget", - "overcommit" - ], - "properties": { - "budget": { - "$id": "#/properties/namespace/properties/budget", - "type": "object", - "title": "The budget schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": 32, - "memory": "64Gi", - "storage": "500Gi" - } - ], - "required": [ - "cpu", - "memory", - "storage" - ], - "properties": { - "cpu": { - "$id": "#/properties/namespace/properties/budget/properties/cpu", - "type": "integer", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 32 - ] - }, - "memory": { - "$id": "#/properties/namespace/properties/budget/properties/memory", - "type": "string", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "64Gi" - ] - }, - "storage": { - "$id": "#/properties/namespace/properties/budget/properties/storage", - "type": "string", - "title": "The storage schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "500Gi" - ] - } - }, - "additionalProperties": true - }, - "overcommit": { - "$id": "#/properties/namespace/properties/overcommit", - "type": "object", - "title": "The overcommit schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": 2, - "memory": 1 - } - ], - "required": [ - "cpu", - "memory" - ], - "properties": { - "cpu": { - "$id": "#/properties/namespace/properties/overcommit/properties/cpu", - "type": "integer", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 2 - ] - }, - "memory": { - "$id": "#/properties/namespace/properties/overcommit/properties/memory", - "type": "integer", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 1 - ] - } - }, - "additionalProperties": true - } - }, - "additionalProperties": true - }, - "pod": { - "$id": "#/properties/pod", - "type": "object", - "title": "The pod schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "limits": { - "cpu": 4, - "memory": "8Gi" - }, - "defaults": { - "cpu": "200m", - "memory": "200Mi" - }, - "overcommit": { - "cpu": 10, - "memory": 2 - } - } - ], - "required": [ - "limits", - "defaults", - "overcommit" - ], - "properties": { - "limits": { - "$id": "#/properties/pod/properties/limits", - "type": "object", - "title": "The limits schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": 4, - "memory": "8Gi" - } - ], - "required": [ - "cpu", - "memory" - ], - "properties": { - "cpu": { - "$id": "#/properties/pod/properties/limits/properties/cpu", - "type": "integer", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 4 - ] - }, - "memory": { - "$id": "#/properties/pod/properties/limits/properties/memory", - "type": "string", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "8Gi" - ] - } - }, - "additionalProperties": true - }, - "defaults": { - "$id": "#/properties/pod/properties/defaults", - "type": "object", - "title": "The defaults schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": "200m", - "memory": "200Mi" - } - ], - "required": [ - "cpu", - "memory" - ], - "properties": { - "cpu": { - "$id": "#/properties/pod/properties/defaults/properties/cpu", - "type": "string", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "200m" - ] - }, - "memory": { - "$id": "#/properties/pod/properties/defaults/properties/memory", - "type": "string", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": "", - "examples": [ - "200Mi" - ] - } - }, - "additionalProperties": true - }, - "overcommit": { - "$id": "#/properties/pod/properties/overcommit", - "type": "object", - "title": "The overcommit schema", - "description": "An explanation about the purpose of this instance.", - "default": {}, - "examples": [ - { - "cpu": 10, - "memory": 2 - } - ], - "required": [ - "cpu", - "memory" - ], - "properties": { - "cpu": { - "$id": "#/properties/pod/properties/overcommit/properties/cpu", - "type": "integer", - "title": "The cpu schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 10 - ] - }, - "memory": { - "$id": "#/properties/pod/properties/overcommit/properties/memory", - "type": "integer", - "title": "The memory schema", - "description": "An explanation about the purpose of this instance.", - "default": 0, - "examples": [ - 2 - ] - } - }, - "additionalProperties": true - } - }, - "additionalProperties": true - } - }, - "additionalProperties": true -} diff --git a/charts/namespaces/values.yaml b/charts/namespaces/values.yaml index 7323ec4..c670af0 100644 --- a/charts/namespaces/values.yaml +++ b/charts/namespaces/values.yaml @@ -1,40 +1 @@ -namespaces: - - name: staging - namespace: - budget: - cpu: 32 - memory: "64Gi" - storage: "500Gi" - overcommit: - cpu: 2 - memory: 1 - pod: - limits: - cpu: 4 - memory: "8Gi" - defaults: - cpu: "200m" - memory: "200Mi" - overcommit: - cpu: 10 - memory: 2 - -namespace: - budget: - cpu: 32 - memory: "64Gi" - storage: "500Gi" - overcommit: - cpu: 2 - memory: 1 - -pod: - limits: - cpu: 4 - memory: "8Gi" - defaults: - cpu: "200m" - memory: "200Mi" - overcommit: - cpu: 10 - memory: 2 +namespaces: [] diff --git a/docs/index.yaml b/docs/index.yaml index c12452b..8f93e3c 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -2,7 +2,7 @@ apiVersion: v1 entries: cron-job: - apiVersion: v2 - created: "2022-06-23T12:54:53.50045411+02:00" + created: "2022-06-23T13:36:12.780464256+02:00" dependencies: - name: common repository: file://../common @@ -15,7 +15,7 @@ entries: - https://chart.onechart.dev/cron-job-0.38.0.tgz version: 0.38.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.500127346+02:00" + created: "2022-06-23T13:36:12.780157689+02:00" dependencies: - name: common repository: file://../common @@ -28,7 +28,7 @@ entries: - https://chart.onechart.dev/cron-job-0.37.0.tgz version: 0.37.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.499777039+02:00" + created: "2022-06-23T13:36:12.779821677+02:00" dependencies: - name: common repository: file://../common @@ -41,7 +41,7 @@ entries: - https://chart.onechart.dev/cron-job-0.36.0.tgz version: 0.36.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.499057919+02:00" + created: "2022-06-23T13:36:12.779500101+02:00" dependencies: - name: common repository: file://../common @@ -54,7 +54,7 @@ entries: - https://chart.onechart.dev/cron-job-0.35.0.tgz version: 0.35.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.498718853+02:00" + created: "2022-06-23T13:36:12.77915374+02:00" dependencies: - name: common repository: file://../common @@ -67,7 +67,7 @@ entries: - https://chart.onechart.dev/cron-job-0.34.0.tgz version: 0.34.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.498367363+02:00" + created: "2022-06-23T13:36:12.778759388+02:00" dependencies: - name: common repository: file://../common @@ -80,7 +80,7 @@ entries: - https://chart.onechart.dev/cron-job-0.33.0.tgz version: 0.33.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.498033887+02:00" + created: "2022-06-23T13:36:12.777948933+02:00" dependencies: - name: common repository: file://../common @@ -93,7 +93,7 @@ entries: - https://chart.onechart.dev/cron-job-0.32.0.tgz version: 0.32.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.497692306+02:00" + created: "2022-06-23T13:36:12.777594796+02:00" dependencies: - name: common repository: file://../common @@ -106,7 +106,7 @@ entries: - https://chart.onechart.dev/cron-job-0.2.2.tgz version: 0.2.2 - apiVersion: v2 - created: "2022-06-23T12:54:53.497354712+02:00" + created: "2022-06-23T13:36:12.777243846+02:00" dependencies: - name: common repository: file://../common @@ -119,7 +119,7 @@ entries: - https://chart.onechart.dev/cron-job-0.2.1.tgz version: 0.2.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.496999355+02:00" + created: "2022-06-23T13:36:12.776878559+02:00" dependencies: - name: common repository: file://../common @@ -132,7 +132,7 @@ entries: - https://chart.onechart.dev/cron-job-0.2.0.tgz version: 0.2.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.496655269+02:00" + created: "2022-06-23T13:36:12.776529171+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 02a23d8b4177290a518ee5de6a5e1f557f7409f94b2e04f23fedea193464188f name: cron-job @@ -141,7 +141,7 @@ entries: - https://chart.onechart.dev/cron-job-0.1.2.tgz version: 0.1.2 - apiVersion: v2 - created: "2022-06-23T12:54:53.496488115+02:00" + created: "2022-06-23T13:36:12.776360283+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: afab9ba533a4686827b54b0dad64f5bbf76f7fbc075e35fb1034689db9ab9dda name: cron-job @@ -150,7 +150,7 @@ entries: - https://chart.onechart.dev/cron-job-0.1.1.tgz version: 0.1.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.496302747+02:00" + created: "2022-06-23T13:36:12.776172039+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 01f9fa40c1c4085d7688474ab00c9e9d21bd1d0793db6b75f2edda0e18456282 name: cron-job @@ -160,16 +160,25 @@ entries: version: 0.1.0 namespaces: - apiVersion: v2 - created: "2022-06-23T12:54:53.500961472+02:00" + created: "2022-06-23T13:36:12.781007197+02:00" description: Chart to create namespaces and their defaults - digest: a8e28dab9dc1a0044e75fbf8dd6d89c760c6fe9caa76bf16076cf5ecb311e808 + digest: ac45eadd69119988580d0eaea4a1c17d0f99ee7321f415c5d295789c96241832 + name: namespaces + type: application + urls: + - https://chart.onechart.dev/namespaces-0.3.0.tgz + version: 0.3.0 + - apiVersion: v2 + created: "2022-06-23T13:36:12.780909373+02:00" + description: Chart to create namespaces and their defaults + digest: 974ae44963622341213717e9734661a18a43880f6029be87077bd868ca1a5da5 name: namespaces type: application urls: - https://chart.onechart.dev/namespaces-0.2.1.tgz version: 0.2.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.500767228+02:00" + created: "2022-06-23T13:36:12.780811399+02:00" description: Chart to create namespaces and their defaults digest: 9539bfd2fde6d8f2b36ffec99c8a3a3eb7887462e98ee740b0ae0ea2b16b96b6 name: namespaces @@ -178,7 +187,7 @@ entries: - https://chart.onechart.dev/namespaces-0.2.0.tgz version: 0.2.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.500576409+02:00" + created: "2022-06-23T13:36:12.780602245+02:00" description: Chart to create namespaces and their defaults digest: 88b06d78a9d1bda6f2ee15b1fad7f25399ac25c2320fb9a8dfa1a4fd14afdf6e name: namespaces @@ -188,7 +197,7 @@ entries: version: 0.1.0 onechart: - apiVersion: v2 - created: "2022-06-23T12:54:53.51705325+02:00" + created: "2022-06-23T13:36:12.796895111+02:00" dependencies: - name: common repository: file://../common @@ -201,7 +210,7 @@ entries: - https://chart.onechart.dev/onechart-0.38.0.tgz version: 0.38.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.51663235+02:00" + created: "2022-06-23T13:36:12.796462817+02:00" dependencies: - name: common repository: file://../common @@ -214,7 +223,7 @@ entries: - https://chart.onechart.dev/onechart-0.37.0.tgz version: 0.37.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.516197293+02:00" + created: "2022-06-23T13:36:12.796042336+02:00" dependencies: - name: common repository: file://../common @@ -227,7 +236,7 @@ entries: - https://chart.onechart.dev/onechart-0.36.0.tgz version: 0.36.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.515752979+02:00" + created: "2022-06-23T13:36:12.795606706+02:00" dependencies: - name: common repository: file://../common @@ -240,7 +249,7 @@ entries: - https://chart.onechart.dev/onechart-0.35.0.tgz version: 0.35.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.51532723+02:00" + created: "2022-06-23T13:36:12.795176908+02:00" dependencies: - name: common repository: file://../common @@ -253,7 +262,7 @@ entries: - https://chart.onechart.dev/onechart-0.34.0.tgz version: 0.34.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.514901421+02:00" + created: "2022-06-23T13:36:12.794754503+02:00" dependencies: - name: common repository: file://../common @@ -266,7 +275,7 @@ entries: - https://chart.onechart.dev/onechart-0.33.0.tgz version: 0.33.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.514366006+02:00" + created: "2022-06-23T13:36:12.794320407+02:00" dependencies: - name: common repository: file://../common @@ -279,7 +288,7 @@ entries: - https://chart.onechart.dev/onechart-0.32.0.tgz version: 0.32.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.513529526+02:00" + created: "2022-06-23T13:36:12.793869909+02:00" dependencies: - name: common repository: file://../common @@ -292,7 +301,7 @@ entries: - https://chart.onechart.dev/onechart-0.31.0.tgz version: 0.31.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.513118174+02:00" + created: "2022-06-23T13:36:12.793036141+02:00" dependencies: - name: common repository: file://../common @@ -305,7 +314,7 @@ entries: - https://chart.onechart.dev/onechart-0.30.0.tgz version: 0.30.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.512321588+02:00" + created: "2022-06-23T13:36:12.792218563+02:00" dependencies: - name: common repository: file://../common @@ -318,7 +327,7 @@ entries: - https://chart.onechart.dev/onechart-0.29.0.tgz version: 0.29.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.511934321+02:00" + created: "2022-06-23T13:36:12.791810715+02:00" dependencies: - name: common repository: file://../common @@ -331,7 +340,7 @@ entries: - https://chart.onechart.dev/onechart-0.28.0.tgz version: 0.28.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.511530423+02:00" + created: "2022-06-23T13:36:12.79141976+02:00" dependencies: - name: common repository: file://../common @@ -344,7 +353,7 @@ entries: - https://chart.onechart.dev/onechart-0.27.0.tgz version: 0.27.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.51114518+02:00" + created: "2022-06-23T13:36:12.791019597+02:00" dependencies: - name: common repository: file://../common @@ -357,7 +366,7 @@ entries: - https://chart.onechart.dev/onechart-0.27.0-rc3.tgz version: 0.27.0-rc3 - apiVersion: v2 - created: "2022-06-23T12:54:53.510746371+02:00" + created: "2022-06-23T13:36:12.790620636+02:00" dependencies: - name: common repository: file://../common @@ -370,7 +379,7 @@ entries: - https://chart.onechart.dev/onechart-0.27.0-rc2.tgz version: 0.27.0-rc2 - apiVersion: v2 - created: "2022-06-23T12:54:53.5103357+02:00" + created: "2022-06-23T13:36:12.790219812+02:00" dependencies: - name: common repository: file://../common @@ -383,7 +392,7 @@ entries: - https://chart.onechart.dev/onechart-0.27.0-rc1.tgz version: 0.27.0-rc1 - apiVersion: v2 - created: "2022-06-23T12:54:53.509905552+02:00" + created: "2022-06-23T13:36:12.78980958+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 3563a30dba0b6a9c7a1a3df358ca5c41e952882fd2f1bbe33c8103536870d651 name: onechart @@ -392,7 +401,7 @@ entries: - https://chart.onechart.dev/onechart-0.26.0.tgz version: 0.26.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.509579189+02:00" + created: "2022-06-23T13:36:12.789502262+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: efcbabde8193f1c3ecb34e4ede8f5efead1f77d8096180f4e8640ff94df07461 name: onechart @@ -401,7 +410,7 @@ entries: - https://chart.onechart.dev/onechart-0.25.0.tgz version: 0.25.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.509109207+02:00" + created: "2022-06-23T13:36:12.789192379+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 59f1389268efb3d970f84cae968e3ecbde57015df1201411f9f46becb4b09844 name: onechart @@ -410,7 +419,7 @@ entries: - https://chart.onechart.dev/onechart-0.24.1.tgz version: 0.24.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.508303745+02:00" + created: "2022-06-23T13:36:12.788848862+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 74b6fdf49a9fa5327fc0639f1d97f0cf553f89030c01379f3c91a5adb6f8a0f1 name: onechart @@ -419,7 +428,7 @@ entries: - https://chart.onechart.dev/onechart-0.24.0.tgz version: 0.24.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.508013249+02:00" + created: "2022-06-23T13:36:12.788380842+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: f8e444c2d5c5a4e73b76a971effda5246d3200427be45c2fb546bc990f197ecc name: onechart @@ -428,7 +437,7 @@ entries: - https://chart.onechart.dev/onechart-0.23.0.tgz version: 0.23.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.5077208+02:00" + created: "2022-06-23T13:36:12.787739715+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: dfad2865c3eb54f0366300ef63b8ba1863ca69aa27e5ca5d3512c0d799d004d3 name: onechart @@ -437,7 +446,7 @@ entries: - https://chart.onechart.dev/onechart-0.22.0.tgz version: 0.22.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.507442929+02:00" + created: "2022-06-23T13:36:12.787448588+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 1b837cdefcb7025c40bffdd620a0f116df5ccb9023ac6a8c538bd8e77b3eb80a name: onechart @@ -446,7 +455,7 @@ entries: - https://chart.onechart.dev/onechart-0.21.0.tgz version: 0.21.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.507152904+02:00" + created: "2022-06-23T13:36:12.787134847+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: a4f5741b46b89cd4328fbd96f96d85d53bae64b526730de5097ec33639c9c54f name: onechart @@ -455,7 +464,7 @@ entries: - https://chart.onechart.dev/onechart-0.20.0.tgz version: 0.20.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.506722506+02:00" + created: "2022-06-23T13:36:12.786726088+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 59dd16db4f8519d3922da349aabcc2daec8385fc8a98d0f3163a84b98cc12f61 name: onechart @@ -464,7 +473,7 @@ entries: - https://chart.onechart.dev/onechart-0.19.0.tgz version: 0.19.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.506429476+02:00" + created: "2022-06-23T13:36:12.786439809+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 74c4c6a448e66929dfcafc5a641b5bdbaa8af6832c6065b02ce756dfeb3fc438 name: onechart @@ -473,7 +482,7 @@ entries: - https://chart.onechart.dev/onechart-0.18.0.tgz version: 0.18.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.506136536+02:00" + created: "2022-06-23T13:36:12.786145456+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: e1ba0bb54c3a3e13b661bb608839c7013d12e24d0437581ebfdbf5ce4a283d4d name: onechart @@ -482,7 +491,7 @@ entries: - https://chart.onechart.dev/onechart-0.17.0.tgz version: 0.17.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.5058404+02:00" + created: "2022-06-23T13:36:12.785857063+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 596350a4977b305e4d5aae16dd8dcca62a17ea5cec9f444aacd82a12d6b3dcfe name: onechart @@ -491,7 +500,7 @@ entries: - https://chart.onechart.dev/onechart-0.16.0.tgz version: 0.16.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.505543092+02:00" + created: "2022-06-23T13:36:12.785563991+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: d1a5a9e9bff274f32f6849bc58b201c7886240b94dd6b70b5cf3411d9ad03393 name: onechart @@ -500,7 +509,7 @@ entries: - https://chart.onechart.dev/onechart-0.15.3.tgz version: 0.15.3 - apiVersion: v2 - created: "2022-06-23T12:54:53.505236156+02:00" + created: "2022-06-23T13:36:12.785277172+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 626410479f67bbbfa7e7fc94f6dfd8aae50a2bdf9fc72ec395c835dacbd5dbe7 name: onechart @@ -509,7 +518,7 @@ entries: - https://chart.onechart.dev/onechart-0.15.2.tgz version: 0.15.2 - apiVersion: v2 - created: "2022-06-23T12:54:53.504930322+02:00" + created: "2022-06-23T13:36:12.784991885+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: e6d237aff4abedee6deb5ba57e8183c7598b255d40afdd04c03f73014f706aa3 name: onechart @@ -518,7 +527,7 @@ entries: - https://chart.onechart.dev/onechart-0.15.1.tgz version: 0.15.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.50459342+02:00" + created: "2022-06-23T13:36:12.784699775+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: d45fc4cc214bc94e4c2c10d6432562d7e65ee5e55226f677aafdfe101d7f6e7f name: onechart @@ -527,7 +536,7 @@ entries: - https://chart.onechart.dev/onechart-0.15.0.tgz version: 0.15.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.503902683+02:00" + created: "2022-06-23T13:36:12.784396595+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 7e61a72a3400e09c44539094558a2084621239015132d20551c4593be3b5bede name: onechart @@ -536,7 +545,7 @@ entries: - https://chart.onechart.dev/onechart-0.14.0.tgz version: 0.14.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.503498484+02:00" + created: "2022-06-23T13:36:12.784110126+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 743a9b552233770713f0c22edbe8cf4f55c890a59106e1f33055c1cb31be5a27 name: onechart @@ -545,7 +554,7 @@ entries: - https://chart.onechart.dev/onechart-0.13.2.tgz version: 0.13.2 - apiVersion: v2 - created: "2022-06-23T12:54:53.503205394+02:00" + created: "2022-06-23T13:36:12.783730011+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 02bf9537e13cea0da9dc3bfbcdd45d51576354cb18b7c1c7cec76f829e20105f name: onechart @@ -554,7 +563,7 @@ entries: - https://chart.onechart.dev/onechart-0.13.1.tgz version: 0.13.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.502926711+02:00" + created: "2022-06-23T13:36:12.783025064+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 5183ed825c4f255ca5a4f0ffeb8c92bbad3c43b42fc1b798f1f1fc6de2a30bef name: onechart @@ -563,7 +572,7 @@ entries: - https://chart.onechart.dev/onechart-0.13.0.tgz version: 0.13.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.502642638+02:00" + created: "2022-06-23T13:36:12.782716473+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: e131a502d12a6b074453f1da8d0d1ca7145e80a025f31252b24cc3d62375a4c1 name: onechart @@ -572,7 +581,7 @@ entries: - https://chart.onechart.dev/onechart-0.12.2.tgz version: 0.12.2 - apiVersion: v2 - created: "2022-06-23T12:54:53.502381377+02:00" + created: "2022-06-23T13:36:12.782442989+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 8e1a25d18a546c4ec5e970991301a08e38495a964a8f6e0a2ee97f92c41c9691 name: onechart @@ -581,7 +590,7 @@ entries: - https://chart.onechart.dev/onechart-0.12.1.tgz version: 0.12.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.502123794+02:00" + created: "2022-06-23T13:36:12.782179553+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: f38a6f2fbf5c847b00a9140ecd004e0bf667d859aa83d8dac4a2d0eecd1a361f name: onechart @@ -590,7 +599,7 @@ entries: - https://chart.onechart.dev/onechart-0.12.0.tgz version: 0.12.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.501861251+02:00" + created: "2022-06-23T13:36:12.781930515+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 75c16f84b5e99aad5aa7203f5c1ce2a9589d85b89afec4e161a2e0344a522c17 name: onechart @@ -599,7 +608,7 @@ entries: - https://chart.onechart.dev/onechart-0.11.0.tgz version: 0.11.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.501626721+02:00" + created: "2022-06-23T13:36:12.781682819+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 40f1166e858d35cb237debd1390187884641b0e8c29a80aaa195b66b0ee73516 name: onechart @@ -608,7 +617,7 @@ entries: - https://chart.onechart.dev/onechart-0.10.0.tgz version: 0.10.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.519613626+02:00" + created: "2022-06-23T13:36:12.799384054+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: cb42b08b463b401f6718bba7c171ee55c173021c5101ea1b3068ef3899a6e164 name: onechart @@ -617,7 +626,7 @@ entries: - https://chart.onechart.dev/onechart-0.9.0.tgz version: 0.9.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.519255805+02:00" + created: "2022-06-23T13:36:12.799158389+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: ce046d209a9e8fa07766712492cc896451473fafca129dbc9c675107d0e39c52 name: onechart @@ -626,7 +635,7 @@ entries: - https://chart.onechart.dev/onechart-0.8.2.tgz version: 0.8.2 - apiVersion: v2 - created: "2022-06-23T12:54:53.51874718+02:00" + created: "2022-06-23T13:36:12.798930561+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 422d7e6ea1bed530d4cd5e23417b229772a6fe2e835828ca282a3e6c9b646b2b name: onechart @@ -635,7 +644,7 @@ entries: - https://chart.onechart.dev/onechart-0.8.1.tgz version: 0.8.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.51840635+02:00" + created: "2022-06-23T13:36:12.798606831+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 8001bd02fc90ad66da7941c136ee8d0e665ea90b6e1ac27d82b048f2b12b3964 name: onechart @@ -644,7 +653,7 @@ entries: - https://chart.onechart.dev/onechart-0.8.0.tgz version: 0.8.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.518202217+02:00" + created: "2022-06-23T13:36:12.798056105+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: d1454b430eb7131d0d450f7c0a8a6698278893c61e03d48649a8112dfcf42b72 name: onechart @@ -653,7 +662,7 @@ entries: - https://chart.onechart.dev/onechart-0.7.1.tgz version: 0.7.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.518017781+02:00" + created: "2022-06-23T13:36:12.797865757+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 4bf90835f287917671ec40b5b395da9332cf18e70f248d250f8d5a72360dcb4e name: onechart @@ -662,7 +671,7 @@ entries: - https://chart.onechart.dev/onechart-0.7.0.tgz version: 0.7.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.517834176+02:00" + created: "2022-06-23T13:36:12.797684576+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 0cade489fc74a040f5e7f71d01c6fa00d3f68b4752a4d8234ccf2c1504b4c0a1 name: onechart @@ -671,7 +680,7 @@ entries: - https://chart.onechart.dev/onechart-0.6.1.tgz version: 0.6.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.517674897+02:00" + created: "2022-06-23T13:36:12.797521349+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: d607820a7e104eaaa88c153c1f2f7f409ef4c612ad747caeb3a671cf3fce03d4 name: onechart @@ -680,7 +689,7 @@ entries: - https://chart.onechart.dev/onechart-0.6.0.tgz version: 0.6.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.517514005+02:00" + created: "2022-06-23T13:36:12.797363983+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: ddf7cf87402095d62855898744b805115fdf86c4b295e0a4def0c50408fd9138 name: onechart @@ -689,7 +698,7 @@ entries: - https://chart.onechart.dev/onechart-0.5.1.tgz version: 0.5.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.517364394+02:00" + created: "2022-06-23T13:36:12.79720833+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: adf3c2cf3a27e58ec75620599e0e1c2031a7410a061a590317beeff6d8a9ad69 name: onechart @@ -698,7 +707,7 @@ entries: - https://chart.onechart.dev/onechart-0.5.0.tgz version: 0.5.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.517211026+02:00" + created: "2022-06-23T13:36:12.797049922+02:00" description: One chart to rule them all. A generic Helm chart for your application deployments. Because no-one can remember the Kubernetes yaml syntax. digest: 8dab33263c4e632aeb4656c666871440b589497b70e76a1d6c3a5e3db1a30bba name: onechart @@ -707,7 +716,7 @@ entries: - https://chart.onechart.dev/onechart-0.4.0.tgz version: 0.4.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.512713955+02:00" + created: "2022-06-23T13:36:12.792637491+02:00" description: A generic Helm chart for your application deployments digest: fbaf6139e0ef8ad9a87cc1e41a97c7d25fdcf7ea17fa6364952f1a851a87480a name: onechart @@ -716,7 +725,7 @@ entries: - https://chart.onechart.dev/onechart-0.3.2.tgz version: 0.3.2 - apiVersion: v2 - created: "2022-06-23T12:54:53.512581646+02:00" + created: "2022-06-23T13:36:12.792501705+02:00" description: A generic Helm chart for your application deployments digest: bd6f5b1865ab9b05fc6925c163ab8045235bd2723dba31f09d5083d24322d1f8 name: onechart @@ -725,7 +734,7 @@ entries: - https://chart.onechart.dev/onechart-0.3.1.tgz version: 0.3.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.512452895+02:00" + created: "2022-06-23T13:36:12.792364648+02:00" description: A generic Helm chart for your application deployments digest: c79cef21eceab948144a289298cdf1e20e77a0782a883d7d65f9e709ccbbc271 name: onechart @@ -734,7 +743,7 @@ entries: - https://chart.onechart.dev/onechart-0.3.0.tgz version: 0.3.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.506859924+02:00" + created: "2022-06-23T13:36:12.786855251+02:00" description: A generic Helm chart for your application deployments digest: dd814ac5d08d5e6163a1b769df6803f5cb0f09d906045086dfcc5be522bb1ec3 name: onechart @@ -743,7 +752,7 @@ entries: - https://chart.onechart.dev/onechart-0.2.0.tgz version: 0.2.0 - apiVersion: v2 - created: "2022-06-23T12:54:53.501394305+02:00" + created: "2022-06-23T13:36:12.781451944+02:00" description: A generic Helm chart for your application deployments digest: e46062df8053840cbfbba26c0a66a843a79f15a0b43a145ed019327513bd5098 name: onechart @@ -752,7 +761,7 @@ entries: - https://chart.onechart.dev/onechart-0.1.2.tgz version: 0.1.2 - apiVersion: v2 - created: "2022-06-23T12:54:53.501254272+02:00" + created: "2022-06-23T13:36:12.781299607+02:00" description: A generic Helm chart for your application deployments digest: a7bbc8b7dcc008e89156cd1830282b7d39c0592e82ccdcefb77a25a42eca2a3d name: onechart @@ -761,7 +770,7 @@ entries: - https://chart.onechart.dev/onechart-0.1.1.tgz version: 0.1.1 - apiVersion: v2 - created: "2022-06-23T12:54:53.50109909+02:00" + created: "2022-06-23T13:36:12.78115773+02:00" description: A generic Helm chart for your application deployments digest: 1ed8c0645abdae6c950526e9c5410dc056847a11700dc7def5f1c55eb7de0cd4 name: onechart @@ -769,4 +778,4 @@ entries: urls: - https://chart.onechart.dev/onechart-0.1.0.tgz version: 0.1.0 -generated: "2022-06-23T12:54:53.496051796+02:00" +generated: "2022-06-23T13:36:12.775942708+02:00" diff --git a/docs/namespaces-0.3.0.tgz b/docs/namespaces-0.3.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..e5e11cf526727bf13d626aa30a33df57f956239a GIT binary patch literal 1432 zcmV;J1!wvniwG0|00000|0w_~VMtOiV@ORlOnEsqVl!4SWK%V1T2nbTPgYhoO;>Dc zVQyr3R8em|NM&qo0PI<9Z`-yL_iKHMgYYlV2S}0p6#NbJMbUP^ur9%pqQh1c1tXnf zq7tQ$ROT$ncOOXV*>dEdo{O%!7YR)sk3Syoi4-F-ij)K>j$W?_m+lRTqtSlJ^E_`p zo$CLd=e7TP{_%9=Psg*FH}kyNY~=Zqi9Z>Ew`UxklnF`r$ouNG+MD}Mh@|ubazPWe zfa|dpq6j!mrT(oA0%QUKMiyDt5Z&F+UNz;f1L`k%+ ziN{9j_6 zMns}GIyrs+_S}_gxt}#2@BcH;_Xqz!1ie3fa|)D6o`A%C9r!@s4R!ke=M_dNa^cE! zAEiK#|4*jJ{Z zvR_yEkSujO(AP#Q=X2DBfHDMog;DI7LB(!^Q!%I;1GwhGd7@;wA58J7I8U#Ua~dMt zf#ewrU_Q}J8lPv&C0&E<*pSOY7OJKJ_}W}kNV&o?i=rF2%1A_)6hn0v(a>G%cQmp! zzf>zIqyjE5AelfANsRDIc7dFsL}50(q!@()2uFx$OeKcuawJz&z|)Hxt&BG(=ZcrI zOAsjr&s^*0C2)+8h+Jzy!X%+g7`>T3D&a30MR0+T358Pt(cp8m59wC1HT6rEr8JflTTumGFr>kigs$L# znHeYB!c&vY&7YZCY2s2HI_6Ez9@HHZ+PD>zGVL@L^*5yY4fqdMocs3w&iG$;?&o7b-}~RhZ-4)rk3DaQ z|A(Ny_`fw&pA>Apk-Bh6!dN2phrm33)jEs=D^8jGLE@;%eFu!P5SfH&CGx*oksX#g z{h#OI%~97R^3_40&;O4n?f1Xq@pwM?{~_ox^`Eu|aFa$p-5MZ@9Qm7?)e|I&s%=Gh zXhMOh-`p}w8%tDK`3~YNs-vjq>U>%~U7MMCdcFgWm$?3kvJmW#zVrW2FYFG9Wisy( zK%Bo{Ie#h{1pscUl1}7pmaQn;j6x=yTw mn{RyoAKw2DLsA*okU0k$XrO_9IQl050RR7b*tCTJEC2w9OVODC literal 0 HcmV?d00001