Skip to content

Commit

Permalink
Upgrade apps (#43)
Browse files Browse the repository at this point in the history
* Upgrade apps to latest versions

* Upgrade to Gameboard 3.6.0
  • Loading branch information
sei-mkaar authored Nov 5, 2022
1 parent 2f2bbb1 commit d8703b8
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions foundry/common/code-server.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
repository: ghcr.io/linuxserver/code-server
repository: linuxserver/code-server
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v3.9.1-ls73"
tag: "4.8.1"
secret:
# PASSWORD: password
SUDO_PASSWORD: foundry
Expand Down
2 changes: 1 addition & 1 deletion foundry/common/identity.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ identity-api:

image:
repository: cmusei/identity
tag: "1.4.7"
tag: "1.4.8"

ingress:
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion foundry/common/kubernetes-dashboard.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

image:
repository: kubernetesui/dashboard
tag: v2.3.0
tag: v2.7.0
pullPolicy: IfNotPresent
pullSecrets: []

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: ""
tag: "8.5.7"

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion foundry/common/pgadmin4.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
registry: docker.io
repository: dpage/pgadmin4
# Overrides the image tag whose default is the chart appVersion.
tag: "6.7"
tag: "6.15"
pullPolicy: IfNotPresent

## Deployment annotations
Expand Down
2 changes: 1 addition & 1 deletion foundry/common/postgresql.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ diagnosticMode:
image:
registry: docker.io
repository: bitnami/postgresql
tag: 14.1.0-debian-10-r80
tag: 14.5.0-debian-11-r38
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
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.3.0"
tag: "3.6.0"

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.3.0"
tag: "3.6.0"

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

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -166,7 +166,7 @@ topomojo-ui:
repository: cmusei/topomojo-ui
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "2.1.1"
tag: "2.1.4"

imagePullSecrets: []
nameOverride: ""
Expand Down
6 changes: 3 additions & 3 deletions setup-appliance
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ 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.23.6+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.3+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
chown $SSH_USERNAME:$SSH_USERNAME ~/.kube/config

# Install CFSSL for certificate generation
curl -sLo /usr/local/bin/cfssl https://github.com/cloudflare/cfssl/releases/download/v1.6.1/cfssl_1.6.1_linux_amd64
curl -sLo /usr/local/bin/cfssljson https://github.com/cloudflare/cfssl/releases/download/v1.6.1/cfssljson_1.6.1_linux_amd64
curl -sLo /usr/local/bin/cfssl https://github.com/cloudflare/cfssl/releases/download/v1.6.3/cfssl_1.6.3_linux_amd64
curl -sLo /usr/local/bin/cfssljson https://github.com/cloudflare/cfssl/releases/download/v1.6.3/cfssljson_1.6.3_linux_amd64
chmod +x /usr/local/bin/cfssl*

# Install k-alias Kubernetes helper scripts
Expand Down

0 comments on commit d8703b8

Please sign in to comment.