Compare commits
No commits in common. "df38c96e04c64847380ff488bb6d75dab6de0f64" and "1c192c41fd1d32cc33cf4a1e0c012c45a0b2acf5" have entirely different histories.
df38c96e04
...
1c192c41fd
56
bump-tag
56
bump-tag
|
@ -1,56 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
test -f cosmos.conf && . ./cosmos.conf
|
|
||||||
|
|
||||||
echo "Fetching any updates from server:"
|
|
||||||
git pull
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
if [ "x$1" = "x" ]; then
|
|
||||||
deftag=`basename $PWD`
|
|
||||||
else
|
|
||||||
deftag="$1"
|
|
||||||
fi
|
|
||||||
tagpfx=${tag:="$deftag"}
|
|
||||||
|
|
||||||
last_tag=`git tag -l "${tagpfx}-*"|sort|tail -1`
|
|
||||||
|
|
||||||
echo "Verifying last tag $last_tag:"
|
|
||||||
(git tag -v $last_tag | grep ^gpg:) || true
|
|
||||||
# again to not mask exit status of git with grep
|
|
||||||
git tag -v $last_tag > /dev/null 2>&1
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
echo "Differences between tag $last_tag and what you are about to sign:"
|
|
||||||
PAGER=cat git diff --color $last_tag..main
|
|
||||||
|
|
||||||
iter=1
|
|
||||||
ok=
|
|
||||||
while test -z "$ok"; do
|
|
||||||
this_tag=$(date +${tagpfx}-%Y-%m-%d-v`printf "%02d" $iter`)
|
|
||||||
iter=`expr $iter + 1`
|
|
||||||
case `(echo $this_tag; echo $last_tag) | sort | tail -1` in
|
|
||||||
$last_tag)
|
|
||||||
;;
|
|
||||||
$this_tag)
|
|
||||||
ok=yes
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "$deftag" != "$tagpfx" ]; then
|
|
||||||
echo -e "Using new tag \e[94m$this_tag\e[0m according to pattern in cosmos.conf"
|
|
||||||
else
|
|
||||||
echo -e "Using new tag \e[94m$this_tag\e[0m"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo -e "\e[1mONLY SIGN IF YOU APPROVE OF VERIFICATION AND DIFF ABOVE\e[0m"
|
|
||||||
|
|
||||||
# GITTAGEXTRA is for putting things like "-u 2117364A"
|
|
||||||
|
|
||||||
git tag $GITTAGEXTRA -m bump. -s $this_tag
|
|
||||||
|
|
||||||
git push
|
|
||||||
git push --tags
|
|
|
@ -1,7 +0,0 @@
|
||||||
apiVersion: 'kustomize.config.k8s.io/v1beta1'
|
|
||||||
kind: Kustomization
|
|
||||||
bases:
|
|
||||||
- ../../../base
|
|
||||||
patchesStrategicMerge:
|
|
||||||
- nextcloud-deployment.yml
|
|
||||||
- nextcloud-ingress.yml
|
|
|
@ -1,34 +0,0 @@
|
||||||
kind: StatefulSet
|
|
||||||
apiVersion: apps/v1
|
|
||||||
metadata:
|
|
||||||
name: customer-node
|
|
||||||
labels:
|
|
||||||
app: customer-node
|
|
||||||
spec:
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: customer-node
|
|
||||||
spec:
|
|
||||||
initContainers:
|
|
||||||
- image: docker.sunet.se/sunet/docker-jinja:latest
|
|
||||||
name: init-config
|
|
||||||
env:
|
|
||||||
- name: MYSQL_DATABASE
|
|
||||||
value: "nextcloud_vinnova"
|
|
||||||
- name: MYSQL_USER
|
|
||||||
value: "nextcloud_vinnova"
|
|
||||||
- name: GSS_MASTER_URL
|
|
||||||
value: "https://drive.test.sunet.se"
|
|
||||||
- name: LOOKUP_SERVER
|
|
||||||
value: "https://lookup.drive.test.sunet.se"
|
|
||||||
- name: MAIL_DOMAIN
|
|
||||||
value: "drive.test.sunet.se"
|
|
||||||
- name: MAIL_SMTPNAME
|
|
||||||
value: "noreply@drive.test.sunet.se"
|
|
||||||
- name: NEXTCLOUD_TRUSTED_DOMAINS
|
|
||||||
value: "vinnova.drive.test.sunet.se"
|
|
||||||
- name: OBJECTSTORE_S3_BUCKET
|
|
||||||
value: "primary-vinnova-drive-test.sunet.se"
|
|
||||||
- name: SITE_NAME
|
|
||||||
value: "vinnova.drive.test.sunet.se"
|
|
|
@ -1,26 +0,0 @@
|
||||||
---
|
|
||||||
apiVersion: networking.k8s.io/v1
|
|
||||||
kind: Ingress
|
|
||||||
metadata:
|
|
||||||
name: customer-ingress
|
|
||||||
annotations:
|
|
||||||
kubernetes.io/ingress.class: traefik
|
|
||||||
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
||||||
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
||||||
spec:
|
|
||||||
tls:
|
|
||||||
- hosts:
|
|
||||||
- vinnova.drive.test.sunet.se
|
|
||||||
secretName: tls-secret
|
|
||||||
|
|
||||||
rules:
|
|
||||||
- host: vinnova.drive.test.sunet.se
|
|
||||||
http:
|
|
||||||
paths:
|
|
||||||
- path: /
|
|
||||||
pathType: Prefix
|
|
||||||
backend:
|
|
||||||
service:
|
|
||||||
name: customer-node
|
|
||||||
port:
|
|
||||||
number: 80
|
|
Loading…
Reference in a new issue