-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.yaml.default
42 lines (37 loc) · 1.34 KB
/
config.yaml.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
# configuration override file for k8s-devkit and ansible-role-k8s-devkit
#
# ref: https://github.com/cisco-sso/ansible-role-k8s-devkit/blob/master/defaults/main.yml
# ref: http://docs.ansible.com/ansible/latest/playbooks_variables.html
# Shared folder mounts from host location to guest location
# Only mounts if they exist
shared_folder_mounts:
- from_host: ~/Dev
to_guest: /home/vagrant/Dev
- from_host: ~/projects
to_guest: /home/vagrant/projects
- from_host: ~/git
to_guest: /home/vagrant/git
# guest machine
network:
# Setting network type (Only tested with OSX):
# Valid values are "public" or "private".
# Private uses NAT
# Public will create a second network interface configured to bridge
# traffic to the host network interface selected by interfface and bridge.
# All other network settings will be ignored if type==private.
type: "private"
address: "192.168.0.10"
gateway: "192.168.0.1"
interface: "enp0s8" # internal interface name from inside the vagrant machine
bridge: "en0: Ethernet" # must match bridge interface on OSX host
# KDK
# User should remain `vagrant` for KDK virtual machine.
# Change these settings if attempting an unsupported install on a regular
# Centos7 box.
kdk_user: vagrant
kdk_user_home: /home/vagrant
# bitbucket
bitbucket_user: example
# github
github_user: example