-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c698fbc
commit b108dc8
Showing
24 changed files
with
556 additions
and
2 deletions.
There are no files selected for viewing
Binary file added
BIN
+1.67 KB
assets/rancher-ack-operator/rancher-ack-operator-105.0.0+up2.10.0.tgz
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
annotations: | ||
catalog.cattle.io/auto-install: rancher-ack-operator-crd=match | ||
catalog.cattle.io/certified: rancher | ||
catalog.cattle.io/hidden: "true" | ||
catalog.cattle.io/kube-version: '>= 1.23.0-0 < 1.32.0-0' | ||
catalog.cattle.io/namespace: cattle-system | ||
catalog.cattle.io/os: linux | ||
catalog.cattle.io/provides-gvr: ackclusterconfigs.ack.cattle.io/v1 | ||
catalog.cattle.io/rancher-version: '>= 2.9.0-0 < 2.11.0-0' | ||
catalog.cattle.io/release-name: rancher-ack-operator | ||
catalog.cattle.io/scope: management | ||
apiVersion: v2 | ||
appVersion: 2.10.0 | ||
description: A Helm chart for provisioning ACK clusters | ||
home: https://github.com/cnrancher/ack-operator | ||
name: rancher-ack-operator | ||
sources: | ||
- https://github.com/cnrancher/ack-operator | ||
version: 105.0.0+up2.10.0 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
labels: | ||
catalog.cattle.io/hidden: "true" |
4 changes: 4 additions & 0 deletions
4
charts/rancher-ack-operator/105.0.0+up2.10.0/templates/NOTES.txt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
You have deployed the Rancher ack operator | ||
Version: {{ .Chart.AppVersion }} | ||
Description: This operator provisions ack clusters | ||
from ackClusterConfig CRs. |
9 changes: 9 additions & 0 deletions
9
charts/rancher-ack-operator/105.0.0+up2.10.0/templates/_helpers.tpl
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{{/* vim: set filetype=mustache: */}} | ||
|
||
{{- define "system_default_registry" -}} | ||
{{- if .Values.global.systemDefaultRegistry -}} | ||
{{- printf "%s/" .Values.global.systemDefaultRegistry -}} | ||
{{- else -}} | ||
{{- "" -}} | ||
{{- end -}} | ||
{{- end -}} |
21 changes: 21 additions & 0 deletions
21
charts/rancher-ack-operator/105.0.0+up2.10.0/templates/clusterrole.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
kind: ClusterRole | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: ack-operator | ||
namespace: cattle-system | ||
rules: | ||
- apiGroups: [''] | ||
resources: ['secrets'] | ||
verbs: ['get', 'list', 'create', 'watch'] | ||
- apiGroups: [''] | ||
resources: ['configmaps'] | ||
verbs: ['get', 'list', 'create','update', 'watch'] | ||
- apiGroups: ['ack.pandaria.io'] | ||
resources: ['ackclusterconfigs'] | ||
verbs: ['get', 'list', 'update', 'watch'] | ||
- apiGroups: ['ack.pandaria.io'] | ||
resources: ['ackclusterconfigs/status'] | ||
verbs: ['update'] | ||
- apiGroups: ['coordination.k8s.io'] | ||
resources: ['leases'] | ||
verbs: ['get', 'list', 'update', 'create', 'watch'] |
13 changes: 13 additions & 0 deletions
13
charts/rancher-ack-operator/105.0.0+up2.10.0/templates/clusterrolebinding.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: ack-operator | ||
namespace: cattle-system | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: ack-operator | ||
subjects: | ||
- kind: ServiceAccount | ||
name: ack-operator | ||
namespace: cattle-system |
57 changes: 57 additions & 0 deletions
57
charts/rancher-ack-operator/105.0.0+up2.10.0/templates/deployment.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: ack-config-operator | ||
namespace: cattle-system | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
ke.cattle.io/operator: ack | ||
template: | ||
metadata: | ||
labels: | ||
ke.cattle.io/operator: ack | ||
spec: | ||
serviceAccountName: ack-operator | ||
containers: | ||
- name: ack-operator | ||
image: {{ template "system_default_registry" . }}{{ .Values.ackOperator.image.repository }}:{{ .Values.ackOperator.image.tag }} | ||
imagePullPolicy: IfNotPresent | ||
args: | ||
{{- if .Values.leaderElect }} | ||
- -leader_elect=true | ||
{{- if .Values.lockName }} | ||
- -lock_name={{ .Values.lockName }} | ||
{{- end }} | ||
{{- if .Values.lockNamespace }} | ||
- -lock_namespace={{ .Values.lockNamespace }} | ||
{{- else }} | ||
- -lock_namespace=cattle-system | ||
{{- end }} | ||
{{- end }} | ||
{{- if .Values.qps }} | ||
- -qps={{ .Values.qps }} | ||
{{- end }} | ||
{{- if .Values.burst }} | ||
- -burst={{ .Values.burst }} | ||
{{- end }} | ||
env: | ||
- name: HTTP_PROXY | ||
value: {{ .Values.httpProxy }} | ||
- name: HTTPS_PROXY | ||
value: {{ .Values.httpsProxy }} | ||
- name: NO_PROXY | ||
value: {{ .Values.noProxy }} | ||
{{- if .Values.additionalTrustedCAs }} | ||
volumeMounts: | ||
- mountPath: /etc/ssl/certs/ca-additional.pem | ||
name: tls-ca-additional-volume | ||
subPath: ca-additional.pem | ||
readOnly: true | ||
volumes: | ||
- name: tls-ca-additional-volume | ||
secret: | ||
defaultMode: 0400 | ||
secretName: tls-ca-additional | ||
{{- end }} |
5 changes: 5 additions & 0 deletions
5
charts/rancher-ack-operator/105.0.0+up2.10.0/templates/serviceaccount.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
namespace: cattle-system | ||
name: ack-operator |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
global: | ||
systemDefaultRegistry: "" | ||
|
||
ackOperator: | ||
image: | ||
repository: cnrancher/ack-operator | ||
tag: v2.10.0-ent | ||
|
||
httpProxy: "" | ||
httpsProxy: "" | ||
noProxy: "" | ||
additionalTrustedCAs: false | ||
leaderElect: true | ||
lockName: "" | ||
lockNamespace: "" | ||
qps: "" | ||
burst: "" |
This file contains 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
13 changes: 13 additions & 0 deletions
13
packages/rancher-ack-operator-crd/105.0.0+up2.10.0/Chart.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
annotations: | ||
catalog.cattle.io/certified: rancher | ||
catalog.cattle.io/hidden: "true" | ||
catalog.cattle.io/kube-version: '>= 1.23.0-0 < 1.32.0-0' | ||
catalog.cattle.io/namespace: cattle-system | ||
catalog.cattle.io/os: linux | ||
catalog.cattle.io/rancher-version: '>= 2.9.0-0 < 2.11.0-0' | ||
catalog.cattle.io/release-name: rancher-ack-operator-crd | ||
apiVersion: v2 | ||
appVersion: 2.10.0 | ||
description: ACK Operator CustomResourceDefinitions | ||
name: rancher-ack-operator-crd | ||
version: 105.0.0+up2.10.0 |
2 changes: 2 additions & 0 deletions
2
packages/rancher-ack-operator-crd/105.0.0+up2.10.0/questions.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
labels: | ||
catalog.cattle.io/hidden: "true" |
Oops, something went wrong.