diff options
Diffstat (limited to '')
| -rw-r--r-- | grumpy/cgit/Kube-descriptor.yaml | 5 | ||||
| -rw-r--r-- | grumpy/cgit/cgit-ing.yaml | 9 | ||||
| -rw-r--r-- | grumpy/cgit/kustomization.yaml | 5 |
3 files changed, 8 insertions, 11 deletions
diff --git a/grumpy/cgit/Kube-descriptor.yaml b/grumpy/cgit/Kube-descriptor.yaml deleted file mode 100644 index b3b91d6..0000000 --- a/grumpy/cgit/Kube-descriptor.yaml +++ /dev/null @@ -1,5 +0,0 @@ -apiVersion: v1 -appVersion: "1.0" -description: A Helm chart for Kubernetes -name: cgit -version: 0.1.0 diff --git a/grumpy/cgit/cgit-ing.yaml b/grumpy/cgit/cgit-ing.yaml index 4e72c1b..e331bfc 100644 --- a/grumpy/cgit/cgit-ing.yaml +++ b/grumpy/cgit/cgit-ing.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: networking.k8s.io/v1 kind: Ingress metadata: annotations: @@ -15,8 +15,11 @@ spec: http: paths: - backend: - serviceName: cgit - servicePort: 8080 + service: + name: cgit + port: + number: 8080 + pathType: Prefix path: / tls: - hosts: diff --git a/grumpy/cgit/kustomization.yaml b/grumpy/cgit/kustomization.yaml index affede7..68446b5 100644 --- a/grumpy/cgit/kustomization.yaml +++ b/grumpy/cgit/kustomization.yaml @@ -9,9 +9,8 @@ commonLabels: # Images modify the tags for images without # creating patches. images: -- name: busybox - name: registry.gitlab.com/grumps/grumpy-containers/cgit - newTag: v0.0.5 + newTag: latest # Value of this field is prepended to the # names of all resources @@ -24,4 +23,4 @@ resources: - cgit-ing.yaml - cgit-sa.yaml - cgit-svc.yaml -- cgit-test-connection-pod.yaml
\ No newline at end of file +- cgit-test-connection-pod.yaml |