Skip to content

Commit 2724a33

Browse files
committed
🧹 Remove unused environment variable from workflow
- Remove unused 'environment' workflow_dispatch input - Remove unused 'environment' job-level environment variable - Clean up workflow to only include variables that are actually used - Keep only the 'domain' input which is actually referenced in the workflow
1 parent 140092b commit 2724a33

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

‎.github/workflows/deploy-kubernetes.yml‎

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,6 @@ on:
1010
- 'infra/helm/**'
1111
workflow_dispatch:
1212
inputs:
13-
environment:
14-
description: 'Deployment environment'
15-
required: true
16-
default: 'dev'
17-
type: choice
18-
options:
19-
- dev
20-
- prod
2113
domain:
2214
description: 'Domain name for deployment'
2315
required: true
@@ -26,14 +18,13 @@ on:
2618
jobs:
2719
deploy-kubernetes:
2820
runs-on: ubuntu-latest
29-
environment: ${{ github.event.inputs.environment || 'dev' }}
3021

3122
env:
3223
HELM_NAMESPACE: studymate
3324
DOMAIN: ${{ github.event.inputs.domain || 'studymate.student.k8s.aet.cit.tum.de' }}
3425
IMAGE_TAG: k8s-latest
35-
POSTGRES_PERSISTENCE_SIZE: 1Gi
36-
WEAVIATE_PERSISTENCE_SIZE: 1Gi
26+
POSTGRES_PERSISTENCE_SIZE: 8Gi
27+
WEAVIATE_PERSISTENCE_SIZE: 10Gi
3728
POSTGRES_RELEASE_NAME: studymate-postgres
3829
POSTGRES_CHART_PATH: bitnami/postgresql
3930
APP_RELEASE_NAME: studymate

0 commit comments

Comments
 (0)