diff --git a/charts/priobike-privacy-policy-service/Chart.yaml b/charts/priobike-privacy-policy-service/Chart.yaml index 165baf5..a1bd8d5 100644 --- a/charts/priobike-privacy-policy-service/Chart.yaml +++ b/charts/priobike-privacy-policy-service/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.0 +version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/priobike-privacy-policy-service/templates/ingress.yaml b/charts/priobike-privacy-policy-service/templates/ingress.yaml new file mode 100644 index 0000000..9e4be8b --- /dev/null +++ b/charts/priobike-privacy-policy-service/templates/ingress.yaml @@ -0,0 +1,18 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: staging-ingress + annotations: + nginx.ingress.kubernetes.io/rewrite-target: / +spec: + ingressClassName: nginx + rules: + - http: + paths: + - path: /privacy-policy + pathType: Prefix + backend: + service: + name: privacy-policy-service + port: + number: 80