5 changed files with 33 additions and 0 deletions
@ -0,0 +1,6 @@ |
|||||
|
apiVersion: v2 |
||||
|
name: argocd-helm3-crd |
||||
|
description: A Helm chart for Kubernetes |
||||
|
type: application |
||||
|
version: 0.1.0 |
||||
|
appVersion: 1.16.0 |
@ -0,0 +1,14 @@ |
|||||
|
apiVersion: apiextensions.k8s.io/v1beta1 |
||||
|
kind: CustomResourceDefinition |
||||
|
metadata: |
||||
|
name: testcrontabs.test.example.com |
||||
|
spec: |
||||
|
group: test.example.com |
||||
|
version: v1 |
||||
|
scope: Namespaced |
||||
|
names: |
||||
|
plural: testcrontabs |
||||
|
singular: testcrontab |
||||
|
kind: TestCronTab |
||||
|
shortNames: |
||||
|
- ct |
@ -0,0 +1,6 @@ |
|||||
|
apiVersion: v1 |
||||
|
kind: ConfigMap |
||||
|
metadata: |
||||
|
name: my-map |
||||
|
data: |
||||
|
foo: bar |
@ -0,0 +1,7 @@ |
|||||
|
apiVersion: test.example.com/v1 |
||||
|
kind: TestCronTab |
||||
|
metadata: |
||||
|
name: test-crontab |
||||
|
spec: |
||||
|
destination: |
||||
|
server: https://kubernetes.default.svc |
Loading…
Reference in new issue