Skip to content

Commit

Permalink
Enable uptime SLA by default (#504)
Browse files Browse the repository at this point in the history
* Enable uptime SLA by default

* Set Uptime SLA default based on Operational Principles

* Updated API Server Non-AZ to 99.5% from 99.9
  • Loading branch information
oplaalvarez0001 authored Jan 26, 2023
1 parent 2a790de commit 8e15386
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion helper/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion helper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"playwright-expect": "^0.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-scripts": "^5.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion helper/src/components/clusterTab.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function ({ tabValues, updateFn, featureFlag, invalidArray }) {
selectedKey={cluster.AksPaidSkuForSLA}
options={[
{ key: false, text: 'Free clusters with a service level objective (SLO) of 99.5%' },
{ key: true, text: 'Uptime SLA guarantees 99.95% availability of the Kubernetes API server endpoint for clusters that use Availability Zones' }
{ key: true, text: 'Uptime SLA guarantees 99.95% availability of the Kubernetes API server endpoint' }
]}
onChange={(ev, { key }) => updateFn("AksPaidSkuForSLA", key)}
/>
Expand Down
9 changes: 6 additions & 3 deletions helper/src/configpresets/entScale.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"agentCount": 2,
"maxCount": 4,
"upgradeChannel": "none",
"DefenderForContainers": true
"DefenderForContainers": true,
"AksPaidSkuForSLA": false
},
"addons": {
"networkPolicy": "none",
Expand Down Expand Up @@ -143,7 +144,8 @@
"apisecurity": "private",
"autoscale": true,
"upgradeChannel": "none",
"DefenderForContainers": true
"DefenderForContainers": true,
"AksPaidSkuForSLA": true
},
"addons": {
"networkPolicy": "azure",
Expand Down Expand Up @@ -229,7 +231,8 @@
"apisecurity": "private",
"autoscale": true,
"upgradeChannel": "none",
"DefenderForContainers": true
"DefenderForContainers": true,
"AksPaidSkuForSLA": true
},
"addons": {
"networkPolicy": "azure",
Expand Down
9 changes: 6 additions & 3 deletions helper/src/configpresets/principals.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"SystemPoolType": "none",
"autoscale": false,
"upgradeChannel": "none",
"DefenderForContainers": false
"DefenderForContainers": false,
"AksPaidSkuForSLA": false
},
"addons": {
"registry": "none",
Expand Down Expand Up @@ -66,7 +67,8 @@
"cluster": {
"SystemPoolType": "CostOptimised",
"autoscale": false,
"upgradeChannel": "none"
"upgradeChannel": "none",
"AksPaidSkuForSLA": false
},
"addons": {
"registry": "none",
Expand Down Expand Up @@ -111,7 +113,8 @@
"cluster": {
"SystemPoolType": "CostOptimised",
"autoscale": true,
"upgradeChannel": "stable"
"upgradeChannel": "stable",
"AksPaidSkuForSLA": true
},
"addons": {
"registry": [
Expand Down

0 comments on commit 8e15386

Please sign in to comment.