this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Oh

+35 -2
+32
k8s/nebula/apps/monitoring/grafana/app/httproute.yaml
··· 1 + apiVersion: gateway.networking.k8s.io/v1 2 + kind: HTTPRoute 3 + metadata: 4 + name: grafana 5 + namespace: monitoring 6 + spec: 7 + hostnames: 8 + - grafana.skylab.fi 9 + parentRefs: 10 + - group: gateway.networking.k8s.io 11 + kind: Gateway 12 + name: envoy-internal 13 + namespace: networking 14 + sectionName: https 15 + - group: gateway.networking.k8s.io 16 + kind: Gateway 17 + name: envoy-external 18 + namespace: networking 19 + sectionName: https 20 + 21 + rules: 22 + - backendRefs: 23 + - group: "" 24 + kind: Service 25 + name: grafana 26 + namespace: monitoring 27 + port: 80 28 + weight: 1 29 + matches: 30 + - path: 31 + type: PathPrefix 32 + value: /
+3 -2
k8s/nebula/apps/monitoring/grafana/app/kustomization.yaml
··· 1 1 apiVersion: kustomize.config.k8s.io/v1beta1 2 2 kind: Kustomization 3 3 resources: 4 - - ocirepo.yaml 5 - - helm-release.yaml 4 + - ./ocirepo.yaml 5 + - ./helm-release.yaml 6 + - ./httproute.yaml