-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update perfectscale-autoscaler chart with new package version v1.0.4
- Loading branch information
github-actions
committed
Aug 12, 2024
1 parent
559dd7f
commit 0bf6dc7
Showing
11 changed files
with
223 additions
and
59 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
charts/psc-autoscaler/examples/cluster-config-cost-saving-performance-improvement.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,26 @@ | ||
apiVersion: perfectscale.io/v1 | ||
kind: ClusterAutomationConfig | ||
metadata: | ||
name: cluster-automation-config | ||
spec: | ||
automation: | ||
operational: | ||
stopAllAutomation: false | ||
workloadTypes: | ||
Deployment: | ||
operational: | ||
automationMode: "Enabled" | ||
restrictions: | ||
cpuManagement: | ||
request: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
limit: | ||
keepLimit: false | ||
memoryManagement: | ||
request: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
limit: | ||
increaseEnabled: true | ||
decreaseEnabled: true |
26 changes: 26 additions & 0 deletions
26
charts/psc-autoscaler/examples/cluster-config-cost-saving.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,26 @@ | ||
apiVersion: perfectscale.io/v1 | ||
kind: ClusterAutomationConfig | ||
metadata: | ||
name: cluster-automation-config | ||
spec: | ||
automation: | ||
operational: | ||
stopAllAutomation: false | ||
workloadTypes: | ||
Deployment: | ||
operational: | ||
automationMode: "Enabled" | ||
restrictions: | ||
cpuManagement: | ||
request: | ||
increaseEnabled: false | ||
decreaseEnabled: true | ||
limit: | ||
keepLimit: true | ||
memoryManagement: | ||
request: | ||
increaseEnabled: false | ||
decreaseEnabled: true | ||
limit: | ||
increaseEnabled: false | ||
decreaseEnabled: false |
8 changes: 8 additions & 0 deletions
8
charts/psc-autoscaler/examples/namespace-config-exclusion.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,8 @@ | ||
apiVersion: perfectscale.io/v1 | ||
kind: NamespaceAutomationConfig | ||
metadata: | ||
name: your-namespace-automation-config | ||
spec: | ||
automation: | ||
operational: | ||
automationMode: "Disabled" |
51 changes: 51 additions & 0 deletions
51
charts/psc-autoscaler/examples/namespace-config-override.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,51 @@ | ||
apiVersion: perfectscale.io/v1 | ||
kind: NamespaceAutomationConfig | ||
metadata: | ||
name: your-namespace-automation-config | ||
spec: | ||
automation: | ||
workloadTypes: | ||
Deployment: | ||
operational: | ||
automationMode: "Enabled" | ||
timeConstraints: | ||
maxAutomationFrequency: "15m" | ||
maintenanceWindow: | ||
monday: | ||
- "10:00-18:00" | ||
tuesday: | ||
- "10:00-18:00" | ||
wednesday: | ||
- "10:00-18:00" | ||
thursday: | ||
- "10:00-18:00" | ||
friday: | ||
- "10:00-18:00" | ||
saturday: | ||
- "10:00-18:00" | ||
sunday: | ||
- "10:00-18:00" | ||
restrictions: | ||
cpuManagement: | ||
request: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
minimumCores: 0.5 | ||
maximumCores: 8 | ||
limit: | ||
keepLimit: false | ||
memoryManagement: | ||
request: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
minimumGiB: 1 | ||
maximumGiB: 16 | ||
limit: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
minimumGiB: 2 | ||
maximumGiB: 31 | ||
memoryLeakDetection: | ||
maxMemoryIncreaseIterations: | ||
daily: 4 | ||
weekly: 7 |
11 changes: 11 additions & 0 deletions
11
charts/psc-autoscaler/examples/workload-config-exclusion.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 @@ | ||
apiVersion: perfectscale.io/v1 | ||
kind: WorkloadAutomationConfig | ||
metadata: | ||
name: your-workload-automation-config | ||
spec: | ||
targetRef: | ||
kind: Deployment | ||
name: deployment-name | ||
automation: | ||
operational: | ||
automationMode: "Disabled" |
38 changes: 38 additions & 0 deletions
38
charts/psc-autoscaler/examples/workload-config-override-container.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,38 @@ | ||
apiVersion: perfectscale.io/v1 | ||
kind: WorkloadAutomationConfig | ||
metadata: | ||
name: your-workload-automation-config | ||
spec: | ||
targetRef: | ||
kind: Deployment | ||
name: deployment-name | ||
automation: | ||
operational: | ||
automationMode: "Enabled" | ||
containers: | ||
container-name: | ||
operational: | ||
restrictions: | ||
cpuManagement: | ||
request: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
minimumCores: 0.5 | ||
maximumCores: 8 | ||
limit: | ||
keepLimit: false | ||
memoryManagement: | ||
request: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
minimumGiB: 1 | ||
maximumGiB: 16 | ||
limit: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
minimumGiB: 2 | ||
maximumGiB: 31 | ||
memoryLeakDetection: | ||
maxMemoryIncreaseIterations: | ||
daily: 4 | ||
weekly: 7 |
52 changes: 52 additions & 0 deletions
52
charts/psc-autoscaler/examples/workload-config-override.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,52 @@ | ||
apiVersion: perfectscale.io/v1 | ||
kind: WorkloadAutomationConfig | ||
metadata: | ||
name: your-workload-automation-config | ||
spec: | ||
targetRef: | ||
kind: Deployment | ||
name: deployment-name | ||
automation: | ||
operational: | ||
automationMode: "Enabled" | ||
timeConstraints: | ||
maxAutomationFrequency: "15m" | ||
maintenanceWindow: | ||
monday: | ||
- "10:00-18:00" | ||
tuesday: | ||
- "10:00-18:00" | ||
wednesday: | ||
- "10:00-18:00" | ||
thursday: | ||
- "10:00-18:00" | ||
friday: | ||
- "10:00-18:00" | ||
saturday: | ||
- "10:00-18:00" | ||
sunday: | ||
- "10:00-18:00" | ||
restrictions: | ||
cpuManagement: | ||
request: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
minimumCores: 0.5 | ||
maximumCores: 8 | ||
limit: | ||
keepLimit: false | ||
memoryManagement: | ||
request: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
minimumGiB: 1 | ||
maximumGiB: 16 | ||
limit: | ||
increaseEnabled: true | ||
decreaseEnabled: true | ||
minimumGiB: 2 | ||
maximumGiB: 31 | ||
memoryLeakDetection: | ||
maxMemoryIncreaseIterations: | ||
daily: 4 | ||
weekly: 7 |
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
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
This file was deleted.
Oops, something went wrong.
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