From 7764b8e61d1ab0740b0d0fe5ec47ca25876a101a Mon Sep 17 00:00:00 2001 From: Derek Roberts Date: Wed, 29 Nov 2023 11:36:10 -0800 Subject: [PATCH 1/3] ci: values.globals.podAnnotations --- charts/quickstart-openshift/values.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/quickstart-openshift/values.yaml b/charts/quickstart-openshift/values.yaml index c6f5bc93d..d2d005693 100644 --- a/charts/quickstart-openshift/values.yaml +++ b/charts/quickstart-openshift/values.yaml @@ -15,6 +15,8 @@ global: domain: "apps.silver.devops.gov.bc.ca" # it is required, apps.silver.devops.gov.bc.ca for silver cluster openshiftImageRegistry: "image-registry.openshift-image-registry.svc:5000" databaseAlias: bitnami-pg # this is the alias for bitnami postgres, change it based on db type(crunchy,patroni...) and alias used in the chart. + podAnnotations: | + app.kubernetes.io/timestamp: {{now | toString }} backend: enabled: true From 814f04c4b49e7fa69f047c44fc2fea47e53414c0 Mon Sep 17 00:00:00 2001 From: Derek Roberts Date: Wed, 29 Nov 2023 12:58:01 -0800 Subject: [PATCH 2/3] Change to test redeploy --- frontend/src/components/Dashboard.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Dashboard.tsx b/frontend/src/components/Dashboard.tsx index f5062115c..fb70c3553 100644 --- a/frontend/src/components/Dashboard.tsx +++ b/frontend/src/components/Dashboard.tsx @@ -27,5 +27,7 @@ export default function Dashboard() { }) }, []) - return + return ( + + ) } From 678b136b9895f820c548e034c5dc2e5c8448bd84 Mon Sep 17 00:00:00 2001 From: Derek Roberts Date: Wed, 29 Nov 2023 13:21:38 -0800 Subject: [PATCH 3/3] Change (undo) to test redeploy --- frontend/src/components/Dashboard.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/components/Dashboard.tsx b/frontend/src/components/Dashboard.tsx index fb70c3553..f5062115c 100644 --- a/frontend/src/components/Dashboard.tsx +++ b/frontend/src/components/Dashboard.tsx @@ -27,7 +27,5 @@ export default function Dashboard() { }) }, []) - return ( - - ) + return }