-
Notifications
You must be signed in to change notification settings - Fork 722
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-v2.11] Forward port rancher-aks-operator (#5283)
- Loading branch information
1 parent
dd5d5dc
commit 2deec44
Showing
26 changed files
with
878 additions
and
2 deletions.
There are no files selected for viewing
Binary file added
BIN
+1.22 KB
assets/rancher-aks-operator-crd/rancher-aks-operator-crd-105.1.0+up1.10.1.tgz
Binary file not shown.
Binary file added
BIN
+1.22 KB
assets/rancher-aks-operator-crd/rancher-aks-operator-crd-105.2.0+up1.10.2.tgz
Binary file not shown.
Binary file added
BIN
+2.07 KB
assets/rancher-aks-operator/rancher-aks-operator-105.1.0+up1.10.1.tgz
Binary file not shown.
Binary file added
BIN
+2.07 KB
assets/rancher-aks-operator/rancher-aks-operator-105.2.0+up1.10.2.tgz
Binary file not shown.
12 changes: 12 additions & 0 deletions
12
charts/rancher-aks-operator-crd/105.1.0+up1.10.1/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-aks-operator-crd | ||
apiVersion: v2 | ||
appVersion: 1.10.1 | ||
description: AKS Operator CustomResourceDefinitions | ||
name: rancher-aks-operator-crd | ||
version: 105.1.0+up1.10.1 |
211 changes: 211 additions & 0 deletions
211
charts/rancher-aks-operator-crd/105.1.0+up1.10.1/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,211 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
helm.sh/resource-policy: keep | ||
name: aksclusterconfigs.aks.cattle.io | ||
spec: | ||
group: aks.cattle.io | ||
names: | ||
kind: AKSClusterConfig | ||
plural: aksclusterconfigs | ||
shortNames: | ||
- akscc | ||
singular: aksclusterconfig | ||
preserveUnknownFields: false | ||
scope: Namespaced | ||
versions: | ||
- name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
properties: | ||
authBaseUrl: | ||
nullable: true | ||
type: string | ||
authorizedIpRanges: | ||
items: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: array | ||
azureCredentialSecret: | ||
nullable: true | ||
type: string | ||
baseUrl: | ||
nullable: true | ||
type: string | ||
clusterName: | ||
nullable: true | ||
type: string | ||
dnsPrefix: | ||
nullable: true | ||
type: string | ||
dnsServiceIp: | ||
nullable: true | ||
type: string | ||
dockerBridgeCidr: | ||
nullable: true | ||
type: string | ||
httpApplicationRouting: | ||
nullable: true | ||
type: boolean | ||
imported: | ||
type: boolean | ||
kubernetesVersion: | ||
nullable: true | ||
type: string | ||
linuxAdminUsername: | ||
nullable: true | ||
type: string | ||
loadBalancerSku: | ||
nullable: true | ||
type: string | ||
logAnalyticsWorkspaceGroup: | ||
nullable: true | ||
type: string | ||
logAnalyticsWorkspaceName: | ||
nullable: true | ||
type: string | ||
managedIdentity: | ||
nullable: true | ||
type: boolean | ||
monitoring: | ||
nullable: true | ||
type: boolean | ||
networkPlugin: | ||
nullable: true | ||
type: string | ||
networkPolicy: | ||
nullable: true | ||
type: string | ||
nodePools: | ||
items: | ||
properties: | ||
availabilityZones: | ||
items: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: array | ||
count: | ||
nullable: true | ||
type: integer | ||
enableAutoScaling: | ||
nullable: true | ||
type: boolean | ||
maxCount: | ||
nullable: true | ||
type: integer | ||
maxPods: | ||
nullable: true | ||
type: integer | ||
maxSurge: | ||
nullable: true | ||
type: string | ||
minCount: | ||
nullable: true | ||
type: integer | ||
mode: | ||
nullable: true | ||
type: string | ||
name: | ||
nullable: true | ||
type: string | ||
nodeLabels: | ||
additionalProperties: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: object | ||
nodeTaints: | ||
items: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: array | ||
orchestratorVersion: | ||
nullable: true | ||
type: string | ||
osDiskSizeGB: | ||
nullable: true | ||
type: integer | ||
osDiskType: | ||
nullable: true | ||
type: string | ||
osType: | ||
nullable: true | ||
type: string | ||
vmSize: | ||
nullable: true | ||
type: string | ||
vnetSubnetID: | ||
nullable: true | ||
type: string | ||
type: object | ||
nullable: true | ||
type: array | ||
nodeResourceGroup: | ||
nullable: true | ||
type: string | ||
outboundType: | ||
nullable: true | ||
type: string | ||
podCidr: | ||
nullable: true | ||
type: string | ||
privateCluster: | ||
nullable: true | ||
type: boolean | ||
privateDnsZone: | ||
nullable: true | ||
type: string | ||
resourceGroup: | ||
nullable: true | ||
type: string | ||
resourceLocation: | ||
nullable: true | ||
type: string | ||
serviceCidr: | ||
nullable: true | ||
type: string | ||
sshPublicKey: | ||
nullable: true | ||
type: string | ||
subnet: | ||
nullable: true | ||
type: string | ||
tags: | ||
additionalProperties: | ||
nullable: true | ||
type: string | ||
nullable: true | ||
type: object | ||
userAssignedIdentity: | ||
nullable: true | ||
type: string | ||
virtualNetwork: | ||
nullable: true | ||
type: string | ||
virtualNetworkResourceGroup: | ||
nullable: true | ||
type: string | ||
type: object | ||
status: | ||
properties: | ||
failureMessage: | ||
nullable: true | ||
type: string | ||
phase: | ||
nullable: true | ||
type: string | ||
rbacEnabled: | ||
nullable: true | ||
type: boolean | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
12 changes: 12 additions & 0 deletions
12
charts/rancher-aks-operator-crd/105.2.0+up1.10.2/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-aks-operator-crd | ||
apiVersion: v2 | ||
appVersion: 1.10.2 | ||
description: AKS Operator CustomResourceDefinitions | ||
name: rancher-aks-operator-crd | ||
version: 105.2.0+up1.10.2 |
Oops, something went wrong.