From c09e4fca0cc516104fb5de643074ffc583bd8d15 Mon Sep 17 00:00:00 2001 From: Zhang Date: Tue, 7 Jul 2020 17:23:40 -0700 Subject: [PATCH] adding helm3-crd5 --- helm3-crd5/Chart.yaml | 6 ++++++ helm3-crd5/crds/crd.yaml | 14 ++++++++++++++ helm3-crd5/templates/config-map.yaml | 6 ++++++ helm3-crd5/templates/crontab-cr.yaml | 7 +++++++ helm3-crd5/values.yaml | 0 5 files changed, 33 insertions(+) create mode 100644 helm3-crd5/Chart.yaml create mode 100644 helm3-crd5/crds/crd.yaml create mode 100644 helm3-crd5/templates/config-map.yaml create mode 100644 helm3-crd5/templates/crontab-cr.yaml create mode 100644 helm3-crd5/values.yaml diff --git a/helm3-crd5/Chart.yaml b/helm3-crd5/Chart.yaml new file mode 100644 index 0000000..23f7028 --- /dev/null +++ b/helm3-crd5/Chart.yaml @@ -0,0 +1,6 @@ +apiVersion: v2 +name: argocd-helm3-crd-3 +description: A Helm chart for Kubernetes +type: application +version: 0.1.0 +appVersion: 1.16.0 diff --git a/helm3-crd5/crds/crd.yaml b/helm3-crd5/crds/crd.yaml new file mode 100644 index 0000000..99e57c3 --- /dev/null +++ b/helm3-crd5/crds/crd.yaml @@ -0,0 +1,14 @@ +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: may5crontabs.may5.example.com +spec: + group: may5.example.com + version: v1 + scope: Namespaced + names: + plural: may5crontabs + singular: may5crontab + kind: May5CronTab + shortNames: + - ct \ No newline at end of file diff --git a/helm3-crd5/templates/config-map.yaml b/helm3-crd5/templates/config-map.yaml new file mode 100644 index 0000000..b781028 --- /dev/null +++ b/helm3-crd5/templates/config-map.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: my-map +data: + foo: bar \ No newline at end of file diff --git a/helm3-crd5/templates/crontab-cr.yaml b/helm3-crd5/templates/crontab-cr.yaml new file mode 100644 index 0000000..0d59c64 --- /dev/null +++ b/helm3-crd5/templates/crontab-cr.yaml @@ -0,0 +1,7 @@ +apiVersion: may5.example.com/v1 +kind: May5CronTab +metadata: + name: may5-crontab +spec: + destination: + server: https://kubernetes.default.svc \ No newline at end of file diff --git a/helm3-crd5/values.yaml b/helm3-crd5/values.yaml new file mode 100644 index 0000000..e69de29