gRPC Server for validating & producing a collection of tekton pipelineRuns/stages (called revisionRuns).
task --list: Available tasks for this project:
* build: Build the app
* build-image: Build container image
* build-server: Build server
* git-push: Commit & push the module
* lint: Lint code
* package: Update Chart.yaml and package archive
* proto: Generate Go code from proto
* push: Push to registry
* release: Relase binaries
* run-client: Run client locally
* run-container: Run container image
* run-server: Run server locally
* tag: Commit, push & tag the module
SET VAULT CONNECTION
export VAULT_ADDR=https://${VAULT_FQDN}}
export VAULT_NAMESPACE=root
# APPROLE AUTH
export VAULT_AUTH_METHOD=approle
export VAULT_ROLE_ID=${VAULT_ROLE_ID}
export VAULT_SECRET_ID=${VAULT_SECRET_ID}
# TOKEN AUTH
export VAULT_AUTH_METHOD=token #default
export VAULT_TOKEN=${VAULT_TOKEN}
RENDER/APPLY
helmfile template --environment labul-pve-dev
helmfile sync --environment labul-pve-dev
RENDER/APPLY
# PORTWARD REDIS FOR RUNNING ON A CLUSTER
kubectl port-forward --namespace stagetime-redis svc/redis-stack 28015:6379
# CHECK REDIS
redis-cli -h 127.0.0.1 -p 28015 -a <PASSWORD>
SEND TEST DATA
export STAGETIME_SERVER=stagetime.cd43.sthings-pve.labul.sva.de:443 #example address | default: localhost:50051
export STAGETIME_TEST_FILES=$PWD/prs.json # or leave out for default path/file in tests folder
go run tests/grpcCall.go
nerdctl run -it --entrypoint sh eu.gcr.io/stuttgart-things/stagetime-server:23.1108.1411-0.3.22
export STAGETIME_SERVER=stagetime.cd43.sthings-pve.labul.sva.de:443
export STAGETIME_TEST_FILES=/tmp/prs.json
/bin/grpcCall
EXAMPLE VALUES
cat <<EOF > stageTime-server.yaml
---
secrets:
redis-connection:
name: redis-connection
labels:
app: stagetime-server
dataType: stringData
secretKVs:
REDIS_SERVER: redis-stack-deployment-headless.redis-stack.svc.cluster.local
REDIS_PORT: 6379
REDIS_PASSWORD: <PASSWORD>
customresources:
stagetime-ingress-certificate:
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: stagetime-server-ingress
labels:
app: stagetime-server
spec:
commonName: stagetime.app.sthings.tiab.ssc.sva.de
dnsNames:
- stagetime.app.sthings.tiab.ssc.sva.de
issuerRef:
name: cluster-issuer-approle
kind: ClusterIssuer
secretName: stagetime-server-ingress-tls
ingress:
stagetime-server:
labels:
app: stagetime-server
name: stagetime-server
ingressClassName: nginx
annotations:
nginx.ingress.kubernetes.io/ssl-redirect: "true"
nginx.ingress.kubernetes.io/backend-protocol: "GRPC"
service:
name: stagetime-server-service
port: 80
path: /
pathType: Prefix
hostname: stagetime
domain: dev21.sthings-vsphere.labul.sva.de
tls:
secretName: stagetime-server-ingress-tls
host: stagetime.dev21.sthings-vsphere.labul.sva.de
EOF
EXAMPLE DEPLOYMENT
helm upgrade --install server helm/
stagetime-server/ -n stagetime --create-namespace --values stageTime-server.yaml --create-namespace
APACHE 2.0
Copyright 2023 patrick hermann.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Patrick Hermann, stuttgart-things 04/2023