Skip to content

Commit

Permalink
add helm chart for azure managed clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
nellyk committed Apr 18, 2024
2 parents 345249a + fbe9cfa commit 568eb5b
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/helm-lint-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint and Test Charts
name: Helm Lint and Test Charts

on: pull_request

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release Charts
name: Helm Release Charts

on:
push:
Expand Down
67 changes: 32 additions & 35 deletions charts/azure-managed-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cluster:
## The name of the cluster
name: aks-cluster-api

## the subnet
## the subnet
cidrBlocks:
- 192.168.0.0/16

Expand All @@ -38,9 +38,6 @@ cluster:


controlplane:

## SSH public key (must be valid)

## Kubernetes version
kubernetes_version: "v1.29.2"

Expand All @@ -52,11 +49,11 @@ controlplane:
networkPluginMode: "overlay"
sshPublicKey: ""
outboundType: "loadBalancer"
dnsServiceIP: ""
dnsServiceIP: ""
loadBalancerSKU: "Standard"
sku:
tier: Standard
addonProfiles :
addonProfiles:
- name: azurepolicy
enabled: false
config: {}
Expand All @@ -72,13 +69,13 @@ controlplane:
outboundIPPrefixes: ""
allocatedOutboundPorts: 0
idleTimeoutInMinutes: 30
apiServerAccessProfile:
apiServerAccessProfile:
authorizedIPRanges: []
spec:
spec:
enablePrivateCluster: false
privateDNSZone: ""
enablePrivateClusterPublicFQDN: false
autoscalerProfile:
autoscalerProfile:
balanceSimilarNodeGroups: "false"
expander: "random"
maxEmptyBulkDelete: "10"
Expand All @@ -101,45 +98,45 @@ controlplane:
oidcIssuerProfile: ""
# disableLocalAccounts: false
additionalTags:
- key: test
value: test
dnsPrefix : ""
- key: test
value: test
dnsPrefix: ""
virtualNetwork: {}
disableLocalAccounts: false
#Only 1 Nodepool of mode System is allowed
agentpools:
# Only 1 Nodepool of mode System is allowed
agentpools:
agentpool0:
mode: System
sku: Standard_DS2_v2
nodecount: 5
osDiskSizeGB: 100
additionalTags:
- key: department
value: test
- key: department
value: finance
# To enable availability zones, uncomment the following lines and set the availability zones
# availabilityZones:
# availabilityZones:
# - "1"
# - "2"
# - "3"
nodeLabels:
- key: test
value: test
- key: test
value: test
taints: {}
scaling:
minSize: 1
maxSize: 5
minSize: 1
maxSize: 5
maxPods: 110
osDiskType : "Ephemeral"
enableUltraSSD : false
osType : "Linux"
enableNodePublicIP : false
nodePublicIPPrefixID : ""
scaleSetPriority : "Regular"
scaleDownMode : "Delete"
spotMaxPrice : ""
kubeletConfig : ""
kubeletDiskType : "OS"
linuxOSConfig : ""
subnetName : ""
enableFIPS : false
enableEncryptionAtHost : false
osDiskType: "Ephemeral"
enableUltraSSD: false
osType: "Linux"
enableNodePublicIP: false
nodePublicIPPrefixID: ""
scaleSetPriority: "Regular"
scaleDownMode: "Delete"
spotMaxPrice: ""
kubeletConfig: ""
kubeletDiskType: "OS"
linuxOSConfig: ""
subnetName: ""
enableFIPS: false
enableEncryptionAtHost: false

0 comments on commit 568eb5b

Please sign in to comment.