From 8e3490bee1b48a0b600d7e0e294831f8fa6ab8b0 Mon Sep 17 00:00:00 2001 From: Zhang Date: Wed, 8 Jul 2020 13:02:13 -0700 Subject: [PATCH] adding helm3-crd8 which has no crd, only cr --- helm3-crd9/Chart.yaml | 6 ++++++ helm3-crd9/crds/crd.yaml | 14 ++++++++++++++ helm3-crd9/templates/crontab-cr.yaml | 9 +++++++++ helm3-crd9/values.yaml | 0 4 files changed, 29 insertions(+) create mode 100644 helm3-crd9/Chart.yaml create mode 100644 helm3-crd9/crds/crd.yaml create mode 100644 helm3-crd9/templates/crontab-cr.yaml create mode 100644 helm3-crd9/values.yaml diff --git a/helm3-crd9/Chart.yaml b/helm3-crd9/Chart.yaml new file mode 100644 index 0000000..0fa41dc --- /dev/null +++ b/helm3-crd9/Chart.yaml @@ -0,0 +1,6 @@ +apiVersion: v2 +name: argocd-helm3-crd-8 +description: A Helm chart for Kubernetes +type: application +version: 0.1.0 +appVersion: 1.16.0 diff --git a/helm3-crd9/crds/crd.yaml b/helm3-crd9/crds/crd.yaml new file mode 100644 index 0000000..499fb53 --- /dev/null +++ b/helm3-crd9/crds/crd.yaml @@ -0,0 +1,14 @@ +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: may9crontabs.may9.example.com +spec: + group: may9.example.com + version: v1 + scope: Namespaced + names: + plural: may9crontabs + singular: may9crontab + kind: May9CronTab + shortNames: + - ct \ No newline at end of file diff --git a/helm3-crd9/templates/crontab-cr.yaml b/helm3-crd9/templates/crontab-cr.yaml new file mode 100644 index 0000000..9ed5c96 --- /dev/null +++ b/helm3-crd9/templates/crontab-cr.yaml @@ -0,0 +1,9 @@ +apiVersion: may9.example.com/v1 +kind: May9CronTab +metadata: + name: may9-crontab + annotations: + argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true +spec: + destination: + server: https://kubernetes.default.svc \ No newline at end of file diff --git a/helm3-crd9/values.yaml b/helm3-crd9/values.yaml new file mode 100644 index 0000000..e69de29