Skip to content

Commit

Permalink
Add chart proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
kramerul committed Dec 23, 2019
1 parent f6b91c1 commit 3d12b44
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
10 changes: 10 additions & 0 deletions charts/shalm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
apiVersion: v1
name: shaml
version: 0.0.1
description:
sources:
- https://github.com/kramerul/shalm
maintainers:
- name: Ulrich Kramer
email: [email protected]
engine: gotpl
11 changes: 11 additions & 0 deletions charts/shalm/templates/example.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
apiVersion: "kramerul.github.com/v1alpha1"
kind: ShalmChart
metadata:
name: my-shalm-chart
spec:
values:
test: 1234
kubeconfig: kubeconfig
kwargs:
namespace: default
url: https://test.org/abc.tgz
36 changes: 36 additions & 0 deletions charts/shalm/templates/shalm-chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: shalmcharts.kramerul.github.com
spec:
group: kramerul.github.com
versions:
- name: v1alpha1
served: true
storage: true
version: v1alpha1
scope: Namespaced
names:
plural: shalmcharts
singular: shalmchart
kind: ShalmChart
validation:
openAPIV3Schema:
type: object
properties:
spec:
type: object
properties:
values:
type: object
additionalProperties: true
kubeconfig:
type: string
url:
type: string
namespace:
type: string
args:
type: array
kwargs:
type: object

0 comments on commit 3d12b44

Please sign in to comment.