[k8s][fedora atomic] Using node instead of minion

Minion is not a good name for k8s worker node anymore, now it has been
replace with 'node' to align with the k8s terminologies. So the server
name of a worker will be something like `k8s-1-lnveovyzpreg-node-0`
instead of `k8s-1-lnveovyzpreg-minion-0`.

Task: 31008
Story: 2005689

Change-Id: Ie9a68b18658e94b6ebe76ebeae8becc23714380d
This commit is contained in:
Feilong Wang 2018-10-09 14:04:42 +13:00
parent 348ebc90f5
commit 39f5d81cfe
2 changed files with 8 additions and 1 deletions

View File

@ -751,7 +751,7 @@ resources:
name:
list_join:
- '-'
- [{ get_param: 'OS::stack_name' }, 'minion', '%index%']
- [{ get_param: 'OS::stack_name' }, 'node', '%index%']
prometheus_monitoring: {get_param: prometheus_monitoring}
ssh_key_name: {get_param: ssh_key_name}
server_image: {get_param: server_image}

View File

@ -0,0 +1,7 @@
---
issues:
- |
Minion is not a good name for k8s worker node anymore, now it has been
replaced in the fedora atomic driver with 'node' to align with the k8s
terminologies. So the server name of a worker will be something like
`k8s-1-lnveovyzpreg-minion-0` instead of `k8s-1-lnveovyzpreg-node-0`.