Skip to content

Commit

Permalink
Reception fix (#227)
Browse files Browse the repository at this point in the history
* fix: replaced AG group photo

* chore: bump version

* chore: bump kubectl in pr-test to v1.30.3

* chore: roll back kubectl server version to v1.27.3
  • Loading branch information
Sebbedi authored Aug 8, 2024
1 parent 600e6bd commit 6f00f24
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ jobs:
run: mkdir "$HOME/.kube/" && mv k3s.yaml "$HOME/.kube/config"
- name: 'lint prod manifests' # NOTE: latest version of kubectl can be found here https://dl.k8s.io/release/stable.txt
run: |
curl -LO "https://dl.k8s.io/release/v1.25.3/bin/linux/amd64/kubectl"
curl -LO "https://dl.k8s.io/v1.25.3/bin/linux/amd64/kubectl.sha256"
curl -LO "https://dl.k8s.io/release/v1.27.3/bin/linux/amd64/kubectl"
curl -LO "https://dl.k8s.io/v1.27.3/bin/linux/amd64/kubectl.sha256"
echo "$(cat kubectl.sha256) kubectl" | sha256sum --check
chmod +x kubectl
kubectl apply --dry-run=server --server-side=true --force-conflicts -f tmeit-rendered.yaml
Expand Down
2 changes: 1 addition & 1 deletion back/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tmeit_backend"
version = "1.3.3"
version = "1.3.4"
description = "Python backend for the TMEIT website"
authors = ["TraditionsMEsterIT"]
license = "AGPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/tmeit-se/postgres/set_image_tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/jobTemplate/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/db-backup-agent:1.3.3"
"value": "ghcr.io/tmeit/db-backup-agent:1.3.4"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/tmeit-run-migrations:1.3.3"
"value": "ghcr.io/tmeit/tmeit-run-migrations:1.3.4"
}
]
2 changes: 1 addition & 1 deletion deploy/kubernetes/tmeit-se/tmeit-app/set_image_tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/tmeit-app:1.3.3"
"value": "ghcr.io/tmeit/tmeit-app:1.3.4"
}
]
2 changes: 1 addition & 1 deletion deploy/kubernetes/tmeit-se/tmeit-worker/set_image_tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/tmeit-worker:1.3.3"
"value": "ghcr.io/tmeit/tmeit-worker:1.3.4"
}
]
2 changes: 1 addition & 1 deletion front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"sideEffects": [
"*.css"
],
"version": "1.3.3",
"version": "1.3.4",
"description": "Front-end for the TMEIT website.",
"main": "index.js",
"scripts": {
Expand Down
Binary file added front/src/app/layout_photos/ag_photo_2024.webp
Binary file not shown.
4 changes: 2 additions & 2 deletions front/src/app/layouts/Join.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {useState, useEffect} from "react";
import styled from "@emotion/styled";

import ag_group from "../layout_photos/AG_group_photo.webp";
import ag_group from "../layout_photos/ag_photo_2024.webp";

import { kisel_blue, secondary_purp, secondary_purp_dark, me_green, data_pink, me_and_in_teal, primary_light, primary_lighter, accent_yellow, accent_maroon, accent_salmon } from "../palette.js";
import JoinForm from "../components/JoinForm";
Expand Down Expand Up @@ -122,7 +122,7 @@ function Join({className}) {
</div>
</div>
<h1> See you at the pub! </h1>
<img className="group-photo" src={ag_group} alt="A group photo of TMEIT during AG 2023" />
<img className="group-photo" src={ag_group} alt="A group photo of TMEIT during AG 2024 (HANGOVER WARNING!!!)" />
</div>
)
}
Expand Down

0 comments on commit 6f00f24

Please sign in to comment.