Compare commits

..

No commits in common. "d72f4212a3f6cc13a3ea8936a4be4a650590fec6" and "075dc2ac0cdfa3854f20691d19dd5b01dfbcb35b" have entirely different histories.

5 changed files with 13 additions and 14 deletions

View File

@ -8,7 +8,7 @@ image:
repository: registry.nationtech.io/sreez-website repository: registry.nationtech.io/sreez-website
pullPolicy: Always pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "v1.2.0" tag: "v1.1.0"
imagePullSecrets: imagePullSecrets:
- name: nationtech-registry-key - name: nationtech-registry-key

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

View File

@ -1,19 +1,24 @@
#!/bin/bash #!/bin/bash
if [[ -z "${1}" ]]
then
echo "Specify the image tag as first argument to this script"
exit 1
fi
REGISTRY=registry.nationtech.io REGISTRY=registry.nationtech.io
IMAGE_NAME=sreez-website IMAGE_NAME=sreez-website
TAG="v1.2.0" TAG="v1.1.0"
IMAGE="${REGISTRY}/${IMAGE_NAME}:${TAG}" IMAGE="${REGISTRY}/${IMAGE_NAME}:${TAG}"
echo -n "Going to build and push image ${IMAGE}. [enter] to continue " echo "Going to build and push image ${IMAGE}"
read
#docker build -t "${IMAGE}" . docker build -t "${IMAGE}" .
#docker push "${IMAGE}" docker push "${IMAGE}"
echo -n "Image is built and pushed, do you want to commit and deploy this new version ? [enter] to continue, CTRL+C to abort " echo "Image is built and pushed, do you want to commit and deploy this new version ? (enter to continue, CTRL+C to abort"
read read
python ../helm/tools/update_yaml.py ../helm/sreez-website/values.yaml .image.tag "${TAG}" python ../helm/tools/update_yaml.py ../helm/sreez-website/values.yaml .image.tag "${TAG}"

View File

@ -21,6 +21,7 @@ pub fn App() -> impl IntoView {
// sets the document title // sets the document title
<Title text="SREEZ - Site Reliability Engineering for Everyone, eZ"/> <Title text="SREEZ - Site Reliability Engineering for Everyone, eZ"/>
// content for this welcome page // content for this welcome page
<Router> <Router>
<main class="bg-main bg-light"> <main class="bg-main bg-light">

View File

@ -1,18 +1,11 @@
use leptos::*; use leptos::*;
use leptos_meta::*;
use crate::components::BookADemo; use crate::components::BookADemo;
use crate::components::Footer; use crate::components::Footer;
/// Renders the home page of your application. /// Renders the home page of your application.
#[component] #[component]
pub fn ShortLandingPage() -> impl IntoView { pub fn ShortLandingPage() -> impl IntoView {
provide_meta_context();
view! { view! {
<Meta property="og:image" content="https://sreez.nationtech.io/assets/sreez_og_banner.png"/>
<Meta property="og:image:width" content="1200"/>
<Meta property="og:image:height" content="630"/>
<div class="margin-x-auto lg-margin-x-3"> <div class="margin-x-auto lg-margin-x-3">
<img src="assets/sreez_logo_shaded_v2.png" aria-label="SREEZ mascot of a cherry because SREEZ sounds like 'cerise' in French which means Cherry" class="max-width-150 margin-top-5"/> <img src="assets/sreez_logo_shaded_v2.png" aria-label="SREEZ mascot of a cherry because SREEZ sounds like 'cerise' in French which means Cherry" class="max-width-150 margin-top-5"/>
</div> </div>