Skip to content

Commit

Permalink
add missing helm chart properties (aws#220) (aws#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjerad committed Aug 4, 2020
1 parent 91b481a commit a91b0e7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 20 additions & 2 deletions config/helm/aws-node-termination-handler/values.yaml
Expand Up @@ -18,8 +18,8 @@ fullnameOverride: ""
priorityClassName: system-node-critical

podAnnotations: {}
linuxAnnotations: {}
windowsAnnotations: {}
linuxPodAnnotations: {}
windowsPodAnnotations: {}

podLabels: {}
linuxPodLabels: {}
Expand All @@ -39,8 +39,18 @@ enableSpotInterruptionDraining: ""
## enableScheduledEventDraining [EXPERIMENTAL] If true, drain nodes before the maintenance window starts for an EC2 instance scheduled event
enableScheduledEventDraining: ""

# Total number of times to try making the metadata request before failing.
metadataTries: 3

# Cordon but do not drain nodes upon spot interruption termination notice.
cordonOnly: false

# Taint node upon spot interruption termination notice.
taintNode: false

# Log messages in JSON format.
jsonLogging: false

## dryRun tells node-termination-handler to only log calls to kubernetes control plane
dryRun: false

Expand All @@ -62,6 +72,9 @@ nodeTerminationGracePeriod: ""
# webhookURL if specified, posts event data to URL upon instance interruption action.
webhookURL: ""

# Webhook URL will be fetched from the secret store using the given name.
webhookURLSecretName: ""

# webhookProxy if specified, uses this HTTP(S) proxy configuration.
webhookProxy: ""

Expand Down Expand Up @@ -127,3 +140,8 @@ podMonitor:
sampleLimit: 5000
# Additional labels to add to the metadata
labels: {}

# K8s DaemonSet update strategy.
updateStrategy: ""
linuxUpdateStrategy: ""
windowsUpdateStrategy: ""
2 changes: 2 additions & 0 deletions config/helm/webhook-test-proxy/values.yaml
Expand Up @@ -25,3 +25,5 @@ regularPodTest:
label: regular-pod-test
port: 1339
targetNodeOs: "linux"
nodeSelector: {}
linuxNodeSelector: {}

0 comments on commit a91b0e7

Please sign in to comment.