diff options
author | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2019-09-30 14:23:30 +0200 |
---|---|---|
committer | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2019-09-30 15:31:13 +0200 |
commit | 155417479ebc5c531349dd898b96ef4a819b0f0a (patch) | |
tree | b309fa341d08cf5ebb89c943afeaa476d09a3d7c /test/security/k8s/vagrant/dublin/Vagrantfile | |
parent | bd12bfbc6fbe4ecfc2152467ea6785c9e5163763 (diff) |
k8s: Resolve address conflicts in virtual environments
Running Casablanca and Dublin virtual environments at the same time led
to networking issues - the same IP had been assigned to cluster nodes.
Issue-ID: SECCOM-235
Change-Id: I2a59d023115326f5b132782a32190fd8f7dc1f48
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Diffstat (limited to 'test/security/k8s/vagrant/dublin/Vagrantfile')
-rw-r--r-- | test/security/k8s/vagrant/dublin/Vagrantfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/security/k8s/vagrant/dublin/Vagrantfile b/test/security/k8s/vagrant/dublin/Vagrantfile index b8abcd125..1ccc3ef9f 100644 --- a/test/security/k8s/vagrant/dublin/Vagrantfile +++ b/test/security/k8s/vagrant/dublin/Vagrantfile @@ -15,10 +15,10 @@ vm_memory = 2 * 1024 vm_cpus = 1 vm_box = "generic/ubuntu1804" -operation = { name: 'operator', hostname: 'operator', ip: '172.17.0.254' } +operation = { name: 'operator', hostname: 'operator', ip: '172.17.4.254' } cluster = [ - { name: 'control', hostname: 'control', ip: '172.17.0.100' }, - { name: 'worker', hostname: 'worker', ip: '172.17.0.101' } + { name: 'control', hostname: 'control', ip: '172.17.4.100' }, + { name: 'worker', hostname: 'worker', ip: '172.17.4.101' } ] all = cluster.dup << operation |