Last active
May 6, 2023 07:54
-
-
Save iwanhae/322f32e993eab8580733be45d58aa1b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: helm-controller | |
namespace: kube-public | |
labels: | |
app: helm-controller | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: helm-controller | |
template: | |
metadata: | |
labels: | |
app: helm-controller | |
spec: | |
serviceAccount: helm-controller | |
containers: | |
- name: helm-controller | |
image: rancher/helm-controller:v0.12.1 | |
resources: | |
limits: | |
memory: "64Mi" | |
cpu: "50m" | |
command: ["helm-controller"] | |
--- | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: helm-controller | |
namespace: kube-public | |
--- | |
apiVersion: apiextensions.k8s.io/v1 | |
kind: CustomResourceDefinition | |
metadata: | |
name: helmcharts.helm.cattle.io | |
spec: | |
group: helm.cattle.io | |
names: | |
kind: HelmChart | |
plural: helmcharts | |
singular: helmchart | |
preserveUnknownFields: false | |
scope: Namespaced | |
versions: | |
- additionalPrinterColumns: | |
- jsonPath: .status.jobName | |
name: Job | |
type: string | |
- jsonPath: .spec.chart | |
name: Chart | |
type: string | |
- jsonPath: .spec.targetNamespace | |
name: TargetNamespace | |
type: string | |
- jsonPath: .spec.version | |
name: Version | |
type: string | |
- jsonPath: .spec.repo | |
name: Repo | |
type: string | |
- jsonPath: .spec.helmVersion | |
name: HelmVersion | |
type: string | |
- jsonPath: .spec.bootstrap | |
name: Bootstrap | |
type: string | |
name: v1 | |
schema: | |
openAPIV3Schema: | |
properties: | |
spec: | |
properties: | |
bootstrap: | |
type: boolean | |
chart: | |
nullable: true | |
type: string | |
chartContent: | |
nullable: true | |
type: string | |
failurePolicy: | |
nullable: true | |
type: string | |
helmVersion: | |
nullable: true | |
type: string | |
jobImage: | |
nullable: true | |
type: string | |
repo: | |
nullable: true | |
type: string | |
repoCA: | |
nullable: true | |
type: string | |
set: | |
additionalProperties: | |
nullable: true | |
type: string | |
nullable: true | |
type: object | |
targetNamespace: | |
nullable: true | |
type: string | |
timeout: | |
nullable: true | |
type: string | |
valuesContent: | |
nullable: true | |
type: string | |
version: | |
nullable: true | |
type: string | |
type: object | |
status: | |
properties: | |
jobName: | |
nullable: true | |
type: string | |
type: object | |
type: object | |
served: true | |
storage: true | |
--- | |
apiVersion: apiextensions.k8s.io/v1 | |
kind: CustomResourceDefinition | |
metadata: | |
name: helmchartconfigs.helm.cattle.io | |
spec: | |
group: helm.cattle.io | |
names: | |
kind: HelmChartConfig | |
plural: helmchartconfigs | |
singular: helmchartconfig | |
preserveUnknownFields: false | |
scope: Namespaced | |
versions: | |
- name: v1 | |
schema: | |
openAPIV3Schema: | |
properties: | |
spec: | |
properties: | |
failurePolicy: | |
nullable: true | |
type: string | |
valuesContent: | |
nullable: true | |
type: string | |
type: object | |
type: object | |
served: true | |
storage: true | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: helm-controller | |
namespace: kube-public | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: ClusterRole | |
name: cluster-admin | |
subjects: | |
- kind: ServiceAccount | |
name: helm-controller | |
namespace: kube-public |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment