4
0
Fork 2
mirror of https://gerrit.hackerspace.pl/hscloud synced 2025-01-24 18:03:52 +00:00

personal/radex: add gadzber

Change-Id: Ia9d008a3fad8a2a99f05af5648a95a1f7d01fc58
Reviewed-on: https://gerrit.hackerspace.pl/c/hscloud/+/1959
This commit is contained in:
radex 2024-05-13 21:49:10 +02:00
parent a88a679f64
commit 3b2b0f0327
2 changed files with 26 additions and 0 deletions

View file

@ -6,4 +6,5 @@ kubectl -n personal-radex rollout restart deploy/blog-qa
kubectl -n personal-radex rollout restart deploy/tadam
kubectl -n personal-radex rollout restart deploy/beamvalley
kubectl -n personal-radex rollout restart deploy/parsley
kubectl -n personal-radex rollout restart deploy/gadzber
```

View file

@ -0,0 +1,25 @@
local kube = import "../../../../kube/hscloud.libsonnet";
local gitStaticSite = import "../lib/gitStaticSite.libsonnet";
{
local top = self,
local ns = kube.Namespace('personal-radex'),
site: gitStaticSite {
cfg+: {
name: 'gadzber',
namespace: 'personal-radex',
domains: [
'gadzber.radex.hscloud.ovh',
'gadzber.pl',
'www.gadzber.pl',
],
source: {
repo: 'git@github.com:gadzber/website.git',
staticSubpath: 'public',
sshSecretName: 'gadzber-ssh',
},
storage: '10Mi',
},
},
}