-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Brandon Foley <[email protected]> Co-authored-by: Brandon Foley <[email protected]>
- Loading branch information
1 parent
d45a77a
commit b2e15d9
Showing
3 changed files
with
86 additions
and
19 deletions.
There are no files selected for viewing
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
42 changes: 42 additions & 0 deletions
42
template/manifests/PodDisruptionBudget/manifest/draft.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,42 @@ | ||
templateName: "podDisruptionBudget-manifest" | ||
description: "This template is used to create a PodDisruptionBudget for an application" | ||
type: "manifest" | ||
variables: | ||
- name: "APPNAME" | ||
type: "string" | ||
kind: "kubernetesResourceName" | ||
description: "the name of the application" | ||
- name: "PARTOF" | ||
type: "string" | ||
kind: "label" | ||
description: "the label to identify which project the resource belong to" | ||
- name: "GENERATORLABEL" | ||
type: "string" | ||
kind: "label" | ||
description: "the label to identify who generated the resource" | ||
default: | ||
value: "draft" | ||
- name: "MINIMUMREPLICAS" | ||
type: "int" | ||
kind: "replicaCount" | ||
description: "specifies the minimum number of pod replicas that the deployment should have" | ||
default: | ||
value: 2 | ||
- name: "MAXIMUMREPLICAS" | ||
type: "int" | ||
kind: "replicaCount" | ||
description: "defines the maximum number of pod replicas the deployment can scale to" | ||
default: | ||
value: 5 | ||
- name: "RESOURCETYPE" | ||
type: "string" | ||
kind: "scalingResourceType" | ||
description: "specifies the resource type (e.g., cpu or memory) to be monitored for scaling" | ||
default: | ||
value: "cpu" | ||
- name: "AVGUTILIZATION" | ||
type: "int" | ||
kind: "scalingResourceUtilization" | ||
description: "specifies the average utilization for the monitored resource, triggering scaling when exceeded" | ||
default: | ||
value: 80 |
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,22 @@ | ||
apiVersion: autoscaling/v2 | ||
kind: HorizontalPodAutoscaler | ||
metadata: | ||
name: {{.APPNAME}} | ||
labels: | ||
app.kubernetes.io/name: {{.APPNAME}} | ||
app.kubernetes.io/part-of: {{.PARTOF}} | ||
kubernetes.azure.com/generator: {{.GENERATORLABEL}} | ||
spec: | ||
scaleTargetRef: | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
name: {{.APPNAME}} | ||
minReplicas: {{.MINIMUMREPLICAS}} | ||
maxReplicas: {{.MAXIMUMREPLICAS}} | ||
metrics: | ||
- type: Resource | ||
resource: | ||
name: {{.RESOURCETYPE}} | ||
target: | ||
type: Utilization | ||
averageUtilization: {{.AVGUTILIZATION}} |