-
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.
- Loading branch information
Showing
13 changed files
with
467 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+1.38 KB
assets/rancher-gke-operator-crd/rancher-gke-operator-crd-103.0.1+up1.2.0-rc1.tgz
Binary file not shown.
Binary file added
BIN
+1.99 KB
assets/rancher-gke-operator/rancher-gke-operator-103.0.1+up1.2.0-rc1.tgz
Binary file not shown.
12 changes: 12 additions & 0 deletions
12
charts/rancher-gke-operator-crd/103.0.1+up1.2.0-rc1/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,12 @@ | ||
annotations: | ||
catalog.cattle.io/certified: rancher | ||
catalog.cattle.io/hidden: "true" | ||
catalog.cattle.io/namespace: cattle-system | ||
catalog.cattle.io/os: linux | ||
catalog.cattle.io/permits-os: linux,windows | ||
catalog.cattle.io/release-name: rancher-gke-operator-crd | ||
apiVersion: v2 | ||
appVersion: 1.2.0-rc1 | ||
description: GKE Operator CustomResourceDefinitions | ||
name: rancher-gke-operator-crd | ||
version: 103.0.1+up1.2.0-rc1 |
250 changes: 250 additions & 0 deletions
250
charts/rancher-gke-operator-crd/103.0.1+up1.2.0-rc1/templates/crds.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,250 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
helm.sh/resource-policy: keep | ||
name: gkeclusterconfigs.gke.cattle.io | ||
spec: | ||
group: gke.cattle.io | ||
names: | ||
kind: GKEClusterConfig | ||
plural: gkeclusterconfigs | ||
shortNames: | ||
- gkecc | ||
singular: gkeclusterconfig | ||
preserveUnknownFields: false | ||
scope: Namespaced | ||
versions: | ||
- name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
clusterAddons: | ||
nullable: true | ||
properties: | ||
horizontalPodAutoscaling: | ||
type: boolean | ||
httpLoadBalancing: | ||
type: boolean | ||
networkPolicyConfig: | ||
type: boolean | ||
type: object | ||
clusterIpv4Cidr: | ||
nullable: true | ||
type: string | ||
clusterName: | ||
nullable: true | ||
type: string | ||
description: | ||
nullable: true | ||
type: string | ||
enableKubernetesAlpha: | ||
nullable: true | ||
type: boolean | ||
googleCredentialSecret: | ||
nullable: true | ||
type: string | ||
imported: | ||
type: boolean | ||
ipAllocationPolicy: | ||
nullable: true | ||
properties: | ||
clusterIpv4CidrBlock: | ||
nullable: true | ||
type: string | ||
clusterSecondaryRangeName: | ||
nullable: true | ||
type: string | ||
createSubnetwork: | ||
type: boolean | ||
nodeIpv4CidrBlock: | ||
nullable: true | ||
type: string | ||
servicesIpv4CidrBlock: | ||
nullable: true | ||
type: string | ||
servicesSecondaryRangeName: | ||
nullable: true | ||
type: string | ||
subnetworkName: | ||
nullable: true | ||
type: string | ||
useIpAliases: | ||
type: boolean | ||
type: object | ||
kubernetesVersion: | ||
nullable: true | ||
type: string | ||
labels: | ||
additionalProperties: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: object | ||
locations: | ||
items: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: array | ||
loggingService: | ||
nullable: true | ||
type: string | ||
maintenanceWindow: | ||
nullable: true | ||
type: string | ||
masterAuthorizedNetworks: | ||
nullable: true | ||
properties: | ||
cidrBlocks: | ||
items: | ||
properties: | ||
cidrBlock: | ||
nullable: true | ||
type: string | ||
displayName: | ||
nullable: true | ||
type: string | ||
type: object | ||
nullable: true | ||
type: array | ||
enabled: | ||
type: boolean | ||
type: object | ||
monitoringService: | ||
nullable: true | ||
type: string | ||
network: | ||
nullable: true | ||
type: string | ||
networkPolicyEnabled: | ||
nullable: true | ||
type: boolean | ||
nodePools: | ||
items: | ||
properties: | ||
autoscaling: | ||
nullable: true | ||
properties: | ||
enabled: | ||
type: boolean | ||
maxNodeCount: | ||
type: integer | ||
minNodeCount: | ||
type: integer | ||
type: object | ||
config: | ||
nullable: true | ||
properties: | ||
diskSizeGb: | ||
type: integer | ||
diskType: | ||
nullable: true | ||
type: string | ||
imageType: | ||
nullable: true | ||
type: string | ||
labels: | ||
additionalProperties: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: object | ||
localSsdCount: | ||
type: integer | ||
machineType: | ||
nullable: true | ||
type: string | ||
oauthScopes: | ||
items: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: array | ||
preemptible: | ||
type: boolean | ||
tags: | ||
items: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: array | ||
taints: | ||
items: | ||
properties: | ||
effect: | ||
nullable: true | ||
type: string | ||
key: | ||
nullable: true | ||
type: string | ||
value: | ||
nullable: true | ||
type: string | ||
type: object | ||
nullable: true | ||
type: array | ||
type: object | ||
initialNodeCount: | ||
nullable: true | ||
type: integer | ||
management: | ||
nullable: true | ||
properties: | ||
autoRepair: | ||
type: boolean | ||
autoUpgrade: | ||
type: boolean | ||
type: object | ||
maxPodsConstraint: | ||
nullable: true | ||
type: integer | ||
name: | ||
nullable: true | ||
type: string | ||
version: | ||
nullable: true | ||
type: string | ||
type: object | ||
nullable: true | ||
type: array | ||
privateClusterConfig: | ||
nullable: true | ||
properties: | ||
enablePrivateEndpoint: | ||
type: boolean | ||
enablePrivateNodes: | ||
type: boolean | ||
masterIpv4CidrBlock: | ||
nullable: true | ||
type: string | ||
type: object | ||
projectID: | ||
nullable: true | ||
type: string | ||
region: | ||
nullable: true | ||
type: string | ||
subnetwork: | ||
nullable: true | ||
type: string | ||
zone: | ||
nullable: true | ||
type: string | ||
type: object | ||
status: | ||
properties: | ||
failureMessage: | ||
nullable: true | ||
type: string | ||
phase: | ||
nullable: true | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
20 changes: 20 additions & 0 deletions
20
charts/rancher-gke-operator/103.0.1+up1.2.0-rc1/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,20 @@ | ||
annotations: | ||
catalog.cattle.io/auto-install: rancher-gke-operator-crd=match | ||
catalog.cattle.io/certified: rancher | ||
catalog.cattle.io/hidden: "true" | ||
catalog.cattle.io/kube-version: '>= 1.20.0-0 < 1.28.0-0' | ||
catalog.cattle.io/namespace: cattle-system | ||
catalog.cattle.io/os: linux | ||
catalog.cattle.io/permits-os: linux,windows | ||
catalog.cattle.io/provides-gvr: gkeclusterconfigs.gke.cattle.io/v1 | ||
catalog.cattle.io/rancher-version: '>= 2.8.0-0 < 2.9.0-0' | ||
catalog.cattle.io/release-name: rancher-gke-operator | ||
catalog.cattle.io/scope: management | ||
apiVersion: v2 | ||
appVersion: 1.2.0-rc1 | ||
description: A Helm chart for provisioning GKE clusters | ||
home: https://github.com/rancher/gke-operator | ||
name: rancher-gke-operator | ||
sources: | ||
- https://github.com/rancher/gke-operator | ||
version: 103.0.1+up1.2.0-rc1 |
4 changes: 4 additions & 0 deletions
4
charts/rancher-gke-operator/103.0.1+up1.2.0-rc1/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 GKE operator | ||
Version: {{ .Chart.AppVersion }} | ||
Description: This operator provisions GKE clusters | ||
from GKEClusterConfig CRs. |
25 changes: 25 additions & 0 deletions
25
charts/rancher-gke-operator/103.0.1+up1.2.0-rc1/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,25 @@ | ||
{{/* vim: set filetype=mustache: */}} | ||
|
||
{{- define "system_default_registry" -}} | ||
{{- if .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}} | ||
{{- else -}} | ||
{{- "" -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Windows cluster will add default taint for linux nodes, | ||
add below linux tolerations to workloads could be scheduled to those linux nodes | ||
*/}} | ||
{{- define "linux-node-tolerations" -}} | ||
- key: "cattle.io/os" | ||
value: "linux" | ||
effect: "NoSchedule" | ||
operator: "Equal" | ||
{{- end -}} | ||
|
||
{{- define "linux-node-selector" -}} | ||
kubernetes.io/os: linux | ||
{{- end -}} | ||
|
15 changes: 15 additions & 0 deletions
15
charts/rancher-gke-operator/103.0.1+up1.2.0-rc1/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,15 @@ | ||
kind: ClusterRole | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: gke-operator | ||
namespace: cattle-system | ||
rules: | ||
- apiGroups: [''] | ||
resources: ['secrets'] | ||
verbs: ['get', 'list', 'create', 'watch'] | ||
- apiGroups: ['gke.cattle.io'] | ||
resources: ['gkeclusterconfigs'] | ||
verbs: ['get', 'list', 'update', 'watch'] | ||
- apiGroups: ['gke.cattle.io'] | ||
resources: ['gkeclusterconfigs/status'] | ||
verbs: ['update'] |
13 changes: 13 additions & 0 deletions
13
charts/rancher-gke-operator/103.0.1+up1.2.0-rc1/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: gke-operator | ||
namespace: cattle-system | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: gke-operator | ||
subjects: | ||
- kind: ServiceAccount | ||
name: gke-operator | ||
namespace: cattle-system |
Oops, something went wrong.