https://github.com/mikebz/cluster-autoscaler
Sample that shows how to use a setter to set the cluster name for cluster-autoscaler.
https://github.com/mikebz/cluster-autoscaler
cluster-autoscaler kpt setters
Last synced: 3 months ago
JSON representation
Sample that shows how to use a setter to set the cluster name for cluster-autoscaler.
- Host: GitHub
- URL: https://github.com/mikebz/cluster-autoscaler
- Owner: mikebz
- Created: 2020-12-29T02:46:59.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-29T04:40:05.000Z (over 4 years ago)
- Last Synced: 2025-01-10T20:15:01.778Z (5 months ago)
- Topics: cluster-autoscaler, kpt, setters
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cluster-autoscaler
## Description
Sample that shows how to use a setter to set the cluster name for cluster-autoscaler.## Usage
### Fetch the package
`kpt pkg get https://github.com/mikebz/cluster-autoscaler cluster-autoscaler`
Details: https://googlecontainertools.github.io/kpt/reference/pkg/get/### View package content
`kpt cfg tree cluster-autoscaler`
Details: https://googlecontainertools.github.io/kpt/reference/cfg/tree/### List setters
`kpt cfg list-setters cluster-autoscaler`
Details: https://googlecontainertools.github.io/kpt/reference/cfg/list-setters/### Set a value
`kpt cfg set cluster-autoscaler cluster_name my-cluseter`
Details: https://googlecontainertools.github.io/kpt/reference/cfg/set/### Apply the package
```
kpt live init cluster-autoscaler
kpt live apply cluster-autoscaler --reconcile-timeout=2m --output=table
```
Details: https://googlecontainertools.github.io/kpt/reference/live/