-
Notifications
You must be signed in to change notification settings - Fork 718
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make prepare | make patch | make charts
- Loading branch information
1 parent
508cad0
commit 903e3c3
Showing
16 changed files
with
721 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+3.41 KB
assets/rancher-provisioning-capi/rancher-provisioning-capi-105.0.0+up0.4.0.tgz
Binary file not shown.
22 changes: 22 additions & 0 deletions
22
charts/rancher-provisioning-capi/105.0.0+up0.4.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,22 @@ | ||
annotations: | ||
catalog.cattle.io/certified: rancher | ||
catalog.cattle.io/display-name: Rancher Provisioning CAPI Controller Manager | ||
catalog.cattle.io/hidden: "true" | ||
catalog.cattle.io/kube-version: '>= 1.27.0-0 < 1.32.0-0' | ||
catalog.cattle.io/namespace: cattle-provisioning-capi-system | ||
catalog.cattle.io/os: linux | ||
catalog.cattle.io/permits-os: linux,windows | ||
catalog.cattle.io/provides-gvr: apps.deployment/v1 | ||
catalog.cattle.io/rancher-version: '>= 2.10.0-0 < 2.11.0-0' | ||
catalog.cattle.io/release-name: rancher-provisioning-capi | ||
apiVersion: v1 | ||
appVersion: 1.8.3 | ||
description: capi-controller-manager compatible with Rancher Provisioning | ||
home: https://github.com/rancher/provisioning/blob/main/charts/capi/ | ||
maintainers: | ||
- email: chris.kim@suse.com | ||
name: Chris Kim | ||
name: rancher-provisioning-capi | ||
sources: | ||
- https://github.com/rancher/provisioning/blob/main/charts/capi/ | ||
version: 105.0.0+up0.4.0 |
2 changes: 2 additions & 0 deletions
2
charts/rancher-provisioning-capi/105.0.0+up0.4.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,2 @@ | ||
{{ $.Chart.Name }} has been installed. Check its status by running: | ||
kubectl --namespace {{ .Release.Namespace }} get pods" |
18 changes: 18 additions & 0 deletions
18
charts/rancher-provisioning-capi/105.0.0+up0.4.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,18 @@ | ||
{{- define "system_default_registry" -}} | ||
{{- if .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- else -}} | ||
{{- "" -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{- define "linux-node-tolerations" -}} | ||
- key: "cattle.io/os" | ||
value: "linux" | ||
effect: "NoSchedule" | ||
operator: "Equal" | ||
{{- end -}} | ||
|
||
{{- define "linux-node-selector" -}} | ||
kubernetes.io/os: linux | ||
{{- end -}} |
11 changes: 11 additions & 0 deletions
11
...provisioning-capi/105.0.0+up0.4.0/templates/clusterrole-capi-aggregated-manager-role.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,11 @@ | ||
aggregationRule: | ||
clusterRoleSelectors: | ||
- matchLabels: | ||
cluster.x-k8s.io/aggregate-to-manager: "true" | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
labels: | ||
cluster.x-k8s.io/provider: cluster-api | ||
name: capi-aggregated-manager-role | ||
rules: [] |
328 changes: 328 additions & 0 deletions
328
...ts/rancher-provisioning-capi/105.0.0+up0.4.0/templates/clusterrole-capi-manager-role.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,328 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
labels: | ||
cluster.x-k8s.io/aggregate-to-manager: "true" | ||
cluster.x-k8s.io/provider: cluster-api | ||
name: capi-manager-role | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- namespaces | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- addons.cluster.x-k8s.io | ||
resources: | ||
- '*' | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- addons.cluster.x-k8s.io | ||
resources: | ||
- clusterresourcesets/finalizers | ||
- clusterresourcesets/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- apiGroups: | ||
- apiextensions.k8s.io | ||
resources: | ||
- customresourcedefinitions | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- authentication.k8s.io | ||
resources: | ||
- tokenreviews | ||
verbs: | ||
- create | ||
- apiGroups: | ||
- authorization.k8s.io | ||
resources: | ||
- subjectaccessreviews | ||
verbs: | ||
- create | ||
- apiGroups: | ||
- bootstrap.cluster.x-k8s.io | ||
- controlplane.cluster.x-k8s.io | ||
- infrastructure.cluster.x-k8s.io | ||
resources: | ||
- '*' | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- bootstrap.cluster.x-k8s.io | ||
- infrastructure.cluster.x-k8s.io | ||
resources: | ||
- '*' | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- clusterclasses | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- clusterclasses | ||
- clusterclasses/status | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- clusters | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- clusters | ||
- clusters/finalizers | ||
- clusters/status | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- clusters | ||
- clusters/status | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinedeployments | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinedeployments | ||
- machinedeployments/finalizers | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinedeployments | ||
- machinedeployments/finalizers | ||
- machinedeployments/status | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinehealthchecks | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinehealthchecks | ||
- machinehealthchecks/finalizers | ||
- machinehealthchecks/status | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinepools | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinepools | ||
- machinepools/finalizers | ||
- machinepools/status | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machines | ||
- machines/finalizers | ||
- machines/status | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machines | ||
- machines/status | ||
verbs: | ||
- delete | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinesets | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinesets | ||
- machinesets/finalizers | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- cluster.x-k8s.io | ||
resources: | ||
- machinesets | ||
- machinesets/finalizers | ||
- machinesets/status | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- configmaps | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- events | ||
verbs: | ||
- create | ||
- patch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- secrets | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- ipam.cluster.x-k8s.io | ||
resources: | ||
- ipaddressclaims | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- runtime.cluster.x-k8s.io | ||
resources: | ||
- extensionconfigs | ||
- extensionconfigs/status | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch |
Oops, something went wrong.