Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version upgrades #45

Merged
merged 6 commits into from
Feb 3, 2023
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ jobs:
key: ${{ runner.os }}-packer

- name: Install Dependencies
run: |
brew install xmlstarlet
run: brew install xmlstarlet

- name: Remove network config for VirtualBox 6 compatibility
run: sed -i '' '/localhostreachable/d' foundry-appliance.pkr.hcl

- name: Build VirtualBox OVF image
uses: nick-invision/retry@v2
Expand Down
3 changes: 3 additions & 0 deletions foundry-appliance.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ source "virtualbox-iso" "foundry-appliance" {
ssh_password = "${var.ssh_password}"
ssh_timeout = "30m"
ssh_username = "${var.ssh_username}"
vboxmanage = [
["modifyvm", "{{.Name}}", "--nat-localhostreachable1", "on"],
]
vm_name = "foundry-appliance-${var.appliance_version}"
}

Expand Down
2 changes: 1 addition & 1 deletion foundry/common/gitea.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ image:
registry: ""
repository: gitea/gitea
# Overrides the image tag whose default is the chart appVersion.
tag: 1.17.3
tag: 1.17.4
pullPolicy: Always
rootless: false # only possible when running 1.14 or later

Expand Down
2 changes: 1 addition & 1 deletion foundry/common/mkdocs-material.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
repository: squidfunk/mkdocs-material
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "8.5.7"
tag: "9.0.4"

imagePullSecrets: []
nameOverride: ""
Expand Down
4 changes: 2 additions & 2 deletions foundry/topomojo/gameboard.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gameboard-api:
repository: cmusei/gameboard-api
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "3.6.0"
tag: "3.7.1"

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -141,7 +141,7 @@ gameboard-ui:
repository: cmusei/gameboard-ui
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "3.6.0"
tag: "3.7.1"

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion setup-appliance
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ apt-get install -y dnsmasq avahi-daemon jq nfs-common sshpass kubectl helm pwgen
# Install k3s
mkdir -p /etc/rancher/k3s
echo "nameserver 10.0.1.1" >> /etc/rancher/k3s/resolv.conf
curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION="v1.25.3+k3s1" INSTALL_K3S_EXEC="--disable traefik --disable servicelb --resolv-conf /etc/rancher/k3s/resolv.conf" sh -
curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION="v1.25.6+k3s1" INSTALL_K3S_EXEC="--disable traefik --disable servicelb --resolv-conf /etc/rancher/k3s/resolv.conf" sh -
sudo -u $SSH_USERNAME mkdir ~/.kube
cp /etc/rancher/k3s/k3s.yaml ~/.kube/config
sed -i 's/default/foundry/g' ~/.kube/config
Expand Down