Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - ignite: use footloose with ignite and firecracker to create real VMs using:
# the ignite backend only works on linux as it requires KVM.
# https://github.com/weaveworks/ignite.
backend: ignite
backend: docker

# Number of nodes allocated for the Kubernetes control plane and workers.
controlPlane:
Expand Down
4 changes: 2 additions & 2 deletions flux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ items:
containers:
- args:
- --ssh-keygen-dir=/var/fluxd/keygen
- --git-url=https://github.com/weaveworks/wks-quickstart-firekube.git
- --git-branch=fix-0-8-4
- --git-url=https://github.com/harin7602/wks-quickstart-firekube.git
- --git-branch=old-version-branch
- --git-poll-interval=30s
- --git-path=.
- --git-readonly
Expand Down
10 changes: 6 additions & 4 deletions footloose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ cluster:
machines:
- count: 2
spec:
backend: ignite
backend: docker
ignite:
cpus: 2
diskSize: 5GB
kernel: weaveworks/ignite-kernel:4.19.47
memory: 1GB
image: weaveworks/ignite-centos:firekube-pre3
image: quay.io/footloose/centos7:0.6.0
name: node%d
portMappings:
- containerPort: 22
Expand All @@ -21,5 +21,7 @@ machines:
hostPort: 30443
- containerPort: 30080
hostPort: 30080
privileged: false
volumes: []
privileged: true
volumes:
- destination: /var/lib/docker
type: volume
4 changes: 2 additions & 2 deletions machines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ items:
apiVersion: baremetalproviderspec/v1alpha1
kind: BareMetalMachineProviderSpec
private:
address: 10.61.0.14
address: 172.17.0.2
port: 22
public:
address: 127.0.0.1
Expand All @@ -31,7 +31,7 @@ items:
apiVersion: baremetalproviderspec/v1alpha1
kind: BareMetalMachineProviderSpec
private:
address: 10.61.0.15
address: 172.17.0.3
port: 22
public:
address: 127.0.0.1
Expand Down