diff options
| author | Max Resnick <max@ofmax.li> | 2022-08-21 10:07:24 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2022-08-21 10:07:24 -0700 |
| commit | a0d6733e195bc04a78e6994ee0c978f8bb6c73ad (patch) | |
| tree | 40fa705fc6a06ca5e09a9d41287bc2d8c97de45d /grumpy/cgit | |
| parent | bda8a1c25070678e6efd22003e398691404c832f (diff) | |
| download | grumpy-charts-a0d6733e195bc04a78e6994ee0c978f8bb6c73ad.tar.gz | |
updating api versions, fixing kustomize
Diffstat (limited to 'grumpy/cgit')
| -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 |