Browse Source

adding crd2

pull/58/head
Zhang 5 years ago
parent
commit
713db3d9b1
  1. 6
      helm3-crd2/helm3-crd/Chart.yaml
  2. 14
      helm3-crd2/helm3-crd/crds/crd.yaml
  3. 6
      helm3-crd2/helm3-crd/templates/config-map.yaml
  4. 7
      helm3-crd2/helm3-crd/templates/crontab-cr.yaml
  5. 0
      helm3-crd2/helm3-crd/values.yaml

6
helm3-crd2/helm3-crd/Chart.yaml

@ -0,0 +1,6 @@
apiVersion: v2
name: argocd-helm3-crd-2
description: A Helm chart for Kubernetes
type: application
version: 0.1.0
appVersion: 1.16.0

14
helm3-crd2/helm3-crd/crds/crd.yaml

@ -0,0 +1,14 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: testcrontabs.test2.example.com
spec:
group: test2.example.com
version: v1
scope: Namespaced
names:
plural: testcrontabs
singular: testcrontab
kind: TestCronTab
shortNames:
- ct

6
helm3-crd2/helm3-crd/templates/config-map.yaml

@ -0,0 +1,6 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: my-map
data:
foo: bar

7
helm3-crd2/helm3-crd/templates/crontab-cr.yaml

@ -0,0 +1,7 @@
apiVersion: test2.example.com/v1
kind: TestCronTab
metadata:
name: test-crontab
spec:
destination:
server: https://kubernetes.default.svc

0
helm3-crd2/helm3-crd/values.yaml

Loading…
Cancel
Save