Skip to content

Commit

Permalink
tks-cluster: change *Node to *NodeDesired for description by var name.
Browse files Browse the repository at this point in the history
  • Loading branch information
sungil committed Sep 11, 2023
1 parent f9ea661 commit 68e815c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
12 changes: 6 additions & 6 deletions aws-msa-reference/tks-cluster/site-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ global:
clusterRegion: CHANGEME
cloudAccountID: CHANGEME

tksCpNode: CHNAGEME
tksCpNodeDesired: CHNAGEME
tksCpNodeMax: CHANGEME
tksCpNodeType: CHANGEME
tksInfraNode: CHNAGEME
tksInfraNodeDesired: CHNAGEME
tksInfraNodeMax: CHANGEME
tksInfraNodeType: CHANGEME
tksUserNode: CHANGEME
tksUserNodeDesired: CHANGEME
tksUserNodeMax: CHANGEME
tksUserNodeType: CHANGEME
# 노드 스탑을 위해서는 min은 항상 0
Expand Down Expand Up @@ -50,11 +50,11 @@ charts:
toPort: 5473
bastion.enabled: false
kubeadmControlPlane:
replicas: $(tksCpNode)
replicas: $(tksCpNodeDesired)
machinePool:
- name: taco
machineType: $(tksInfraNodeType)
replicas: $(tksInfraNode)
replicas: $(tksInfraNodeDesired)
minSize: 0
maxSize: $(tksInfraNodeMax)
rootVolume:
Expand All @@ -68,7 +68,7 @@ charts:
- "arn:aws:iam::aws:policy/AmazonS3FullAccess"
- name: normal
machineType: $(tksUserNodeType)
replicas: $(tksUserNode)
replicas: $(tksUserNodeDesired)
minSize: 0
maxSize: $(tksUserNodeMax)
rootVolume:
Expand Down
12 changes: 6 additions & 6 deletions aws-reference/tks-cluster/site-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ global:
clusterRegion: CHANGEME
cloudAccountID: CHANGEME

tksCpNode: CHNAGEME
tksCpNodeDesired: CHNAGEME
tksCpNodeMax: CHANGEME
tksCpNodeType: CHANGEME
tksInfraNode: CHNAGEME
tksInfraNodeDesired: CHNAGEME
tksInfraNodeMax: CHANGEME
tksInfraNodeType: CHANGEME
tksUserNode: CHANGEME
tksUserNodeDesired: CHANGEME
tksUserNodeMax: CHANGEME
tksUserNodeType: CHANGEME
# 노드 스탑을 위해서는 min은 항상 0
Expand Down Expand Up @@ -50,11 +50,11 @@ charts:
toPort: 5473
bastion.enabled: false
kubeadmControlPlane:
replicas: $(tksCpNode)
replicas: $(tksCpNodeDesired)
machinePool:
- name: taco
machineType: $(tksInfraNodeType)
replicas: $(tksInfraNode)
replicas: $(tksInfraNodeDesired)
minSize: 0
maxSize: $(tksInfraNodeMax)
rootVolume:
Expand All @@ -68,7 +68,7 @@ charts:
- "arn:aws:iam::aws:policy/AmazonS3FullAccess"
- name: normal
machineType: $(tksUserNodeType)
replicas: $(tksUserNode)
replicas: $(tksUserNodeDesired)
minSize: 0
maxSize: $(tksUserNodeMax)
rootVolume:
Expand Down
8 changes: 4 additions & 4 deletions eks-msa-reference/tks-cluster/site-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ global:
clusterRegion: CHANGEME
cloudAccountID: CHANGEME

tksInfraNode: CHNAGEME
tksInfraNodeDesired: CHNAGEME
tksInfraNodeMax: CHANGEME
tksInfraNodeType: CHANGEME
tksUserNode: CHANGEME
tksUserNodeDesired: CHANGEME
tksUserNodeMax: CHANGEME
tksUserNodeType: CHANGEME
# 노드 스탑을 위해서는 min은 항상 0
Expand Down Expand Up @@ -43,7 +43,7 @@ charts:
machinePool:
- name: taco
machineType: $(tksInfraNodeType)
replicas: $(tksInfraNode)
replicas: $(tksInfraNodeDesired)
minSize: 0
maxSize: $(tksInfraNodeMax)
rootVolume:
Expand All @@ -58,7 +58,7 @@ charts:
- "arn:aws:iam::aws:policy/service-role/AmazonEBSCSIDriverPolicy"
- name: normal
machineType: $(tksUserNodeType)
replicas: $(tksUserNode)
replicas: $(tksUserNodeDesired)
minSize: 0
maxSize: $(tksUserNodeMax)
rootVolume:
Expand Down
10 changes: 5 additions & 5 deletions eks-reference/tks-cluster/site-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ global:
clusterRegion: CHANGEME
cloudAccountID: CHANGEME

tksCpNode: CHNAGEME
tksCpNodeDesired: CHNAGEME
tksCpNodeMax: CHANGEME
tksCpNodeType: CHANGEME
tksInfraNode: CHNAGEME
tksInfraNodeDesired: CHNAGEME
tksInfraNodeMax: CHANGEME
tksInfraNodeType: CHANGEME
tksUserNode: CHANGEME
tksUserNodeDesired: CHANGEME
tksUserNodeMax: CHANGEME
tksUserNodeType: CHANGEME
# 노드 스탑을 위해서는 min은 항상 0
Expand Down Expand Up @@ -46,7 +46,7 @@ charts:
machinePool:
- name: taco
machineType: $(tksInfraNodeType)
replicas: $(tksInfraNode)
replicas: $(tksInfraNodeDesired)
minSize: 0
maxSize: $(tksInfraNodeMax)
rootVolume:
Expand All @@ -61,7 +61,7 @@ charts:
- "arn:aws:iam::aws:policy/service-role/AmazonEBSCSIDriverPolicy"
- name: normal
machineType: $(tksUserNodeType)
replicas: $(tksUserNode)
replicas: $(tksUserNodeDesired)
minSize: 0
maxSize: $(tksUserNodeMax)
rootVolume:
Expand Down

0 comments on commit 68e815c

Please sign in to comment.