Skip to content

Commit 6d3929a

Browse files
committed
adding argo
1 parent e83051c commit 6d3929a

File tree

5 files changed

+33
-0
lines changed

5 files changed

+33
-0
lines changed

argo/Chart.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
apiVersion: v2
2+
name: argocd-helm3-crd
3+
description: A Helm chart for Kubernetes
4+
type: application
5+
version: 0.1.0
6+
appVersion: 1.16.0

argo/crds/crd.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apiVersion: apiextensions.k8s.io/v1beta1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
name: testcrontabs.test.example.com
5+
spec:
6+
group: test.example.com
7+
version: v1
8+
scope: Namespaced
9+
names:
10+
plural: testcrontabs
11+
singular: testcrontab
12+
kind: TestCronTab
13+
shortNames:
14+
- ct

argo/templates/config-map.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
apiVersion: v1
2+
kind: ConfigMap
3+
metadata:
4+
name: my-map
5+
data:
6+
foo: bar

argo/templates/crontab-cr.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
apiVersion: test.example.com/v1
2+
kind: TestCronTab
3+
metadata:
4+
name: test-crontab
5+
spec:
6+
destination:
7+
server: https://kubernetes.default.svc

argo/values.yaml

Whitespace-only changes.

0 commit comments

Comments
 (0)