diff --git a/guestbook/guestbook-ui-deployment.yaml b/guestbook/guestbook-ui-deployment.yaml index 8a0975e..e69de29 100644 --- a/guestbook/guestbook-ui-deployment.yaml +++ b/guestbook/guestbook-ui-deployment.yaml @@ -1,20 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: guestbook-ui -spec: - replicas: 1 - revisionHistoryLimit: 3 - selector: - matchLabels: - app: guestbook-ui - template: - metadata: - labels: - app: guestbook-ui - spec: - containers: - - image: gcr.io/heptio-images/ks-guestbook-demo:0.2 - name: guestbook-ui - ports: - - containerPort: 80 diff --git a/guestbook/guestbook-ui-svc.yaml b/guestbook/guestbook-ui-svc.yaml deleted file mode 100644 index e8a4a27..0000000 --- a/guestbook/guestbook-ui-svc.yaml +++ /dev/null @@ -1,10 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: guestbook-ui -spec: - ports: - - port: 80 - targetPort: 80 - selector: - app: guestbook-ui 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 diff --git a/helm3-crd6/Chart.yaml b/helm3-crd6/Chart.yaml new file mode 100644 index 0000000..23f7028 --- /dev/null +++ b/helm3-crd6/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-crd6/crds/crd.yaml b/helm3-crd6/crds/crd.yaml new file mode 100644 index 0000000..564c11b --- /dev/null +++ b/helm3-crd6/crds/crd.yaml @@ -0,0 +1,14 @@ +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: may6crontabs.may6.example.com +spec: + group: may6.example.com + version: v1 + scope: Namespaced + names: + plural: may6crontabs + singular: may6crontab + kind: May6CronTab + shortNames: + - ct \ No newline at end of file diff --git a/helm3-crd6/templates/config-map.yaml b/helm3-crd6/templates/config-map.yaml new file mode 100644 index 0000000..b781028 --- /dev/null +++ b/helm3-crd6/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-crd6/templates/crontab-cr.yaml b/helm3-crd6/templates/crontab-cr.yaml new file mode 100644 index 0000000..a35157e --- /dev/null +++ b/helm3-crd6/templates/crontab-cr.yaml @@ -0,0 +1,7 @@ +apiVersion: may6.example.com/v1 +kind: May6CronTab +metadata: + name: may6-crontab +spec: + destination: + server: https://kubernetes.default.svc \ No newline at end of file diff --git a/helm3-crd6/values.yaml b/helm3-crd6/values.yaml new file mode 100644 index 0000000..e69de29 diff --git a/helm3-crd7/Chart.yaml b/helm3-crd7/Chart.yaml new file mode 100644 index 0000000..8d3cb8f --- /dev/null +++ b/helm3-crd7/Chart.yaml @@ -0,0 +1,6 @@ +apiVersion: v2 +name: argocd-helm3-crd-7 +description: A Helm chart for Kubernetes +type: application +version: 0.1.0 +appVersion: 1.16.0 diff --git a/helm3-crd7/crds/crd.yaml b/helm3-crd7/crds/crd.yaml new file mode 100644 index 0000000..900ef53 --- /dev/null +++ b/helm3-crd7/crds/crd.yaml @@ -0,0 +1,14 @@ +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: may7crontabs.may7.example.com +spec: + group: may7.example.com + version: v1 + scope: Namespaced + names: + plural: may7crontabs + singular: may7crontab + kind: May7CronTab + shortNames: + - ct \ No newline at end of file diff --git a/helm3-crd7/templates/crontab-cr.yaml b/helm3-crd7/templates/crontab-cr.yaml new file mode 100644 index 0000000..415c85d --- /dev/null +++ b/helm3-crd7/templates/crontab-cr.yaml @@ -0,0 +1,7 @@ +apiVersion: may7.example.com/v1 +kind: May7CronTab +metadata: + name: may7-crontab +spec: + destination: + server: https://kubernetes.default.svc \ No newline at end of file diff --git a/helm3-crd7/values.yaml b/helm3-crd7/values.yaml new file mode 100644 index 0000000..e69de29 diff --git a/helm3-crd8/Chart.yaml b/helm3-crd8/Chart.yaml new file mode 100644 index 0000000..0fa41dc --- /dev/null +++ b/helm3-crd8/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-crd8/templates/config-map.yaml b/helm3-crd8/templates/config-map.yaml new file mode 100644 index 0000000..7224a46 --- /dev/null +++ b/helm3-crd8/templates/config-map.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: my-map8 +data: + foo: bar \ No newline at end of file diff --git a/helm3-crd8/templates/crontab-cr.yaml b/helm3-crd8/templates/crontab-cr.yaml new file mode 100644 index 0000000..6029997 --- /dev/null +++ b/helm3-crd8/templates/crontab-cr.yaml @@ -0,0 +1,7 @@ +apiVersion: may8.example.com/v1 +kind: May8CronTab +metadata: + name: may8-crontab +spec: + destination: + server: https://kubernetes.default.svc \ No newline at end of file diff --git a/helm3-crd8/values.yaml b/helm3-crd8/values.yaml new file mode 100644 index 0000000..e69de29 diff --git a/helm3-crd9/Chart.yaml b/helm3-crd9/Chart.yaml new file mode 100644 index 0000000..64316f6 --- /dev/null +++ b/helm3-crd9/Chart.yaml @@ -0,0 +1,6 @@ +apiVersion: v2 +name: argocd-helm3-crd-9-delete +description: A Helm chart for Kubernetes +type: application +version: 0.1.0 +appVersion: 1.16.0 diff --git a/helm3-crd9/values.yaml b/helm3-crd9/values.yaml new file mode 100644 index 0000000..e69de29