You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
482 B
12 lines
482 B
# k8s-on-openstack uses the baked in ubuntu user and ssh keypairs
|
|
# to interact with the host. Our other roles assume that we'll be
|
|
# logging in directly as root. Run base-repos logging in as ubuntu
|
|
# with become: true set so that we can overwrite the root ssh key
|
|
# with the one allowing direct login from bridge.
|
|
- hosts: "kubernetes:!disabled"
|
|
name: "Base: set up users and base package repositories on all hosts"
|
|
remote_user: ubuntu
|
|
become: true
|
|
roles:
|
|
- base-repos
|