Revision 2a743de681dbdd1135e72b161b10d81854ba5f3c authored by Marco Hofstetter on 05 December 2023, 08:16:32 UTC, committed by Marco Hofstetter on 05 December 2023, 08:16:32 UTC
The guestbook in version v5 fails trying to connect to `redis-leader`. The reason
is that the deployment is still named `redis-master`.

Therefore, this commit renames the guestbook example deployments
to use the leader/follower naming.

Signed-off-by: Marco Hofstetter <marco.hofstetter@isovalent.com>
1 parent 6f7fe81
Raw File
vagrant_box_defaults.rb
# -*- mode: ruby -*-
# vi: set ft=ruby
Vagrant.require_version ">= 2.2.0"

$SERVER_BOX = "cilium/ubuntu-4-19"
$SERVER_VERSION= "73"
$NETNEXT_SERVER_BOX= "cilium/ubuntu-next"
$NETNEXT_SERVER_VERSION= "165"
@v54_SERVER_BOX= "cilium/ubuntu-5-4"
@v54_SERVER_VERSION= "40"
@v419_SERVER_BOX= "cilium/ubuntu-4-19"
@v419_SERVER_VERSION= "73"
back to top