Skip to content

Commit

Permalink
fix serivce (#92)
Browse files Browse the repository at this point in the history
* fix serivce

* version

* version
  • Loading branch information
aaronstutzer authored Feb 13, 2024
1 parent b6f1427 commit 288bed8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 66 deletions.
4 changes: 2 additions & 2 deletions charts/gke-ingress/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: gke-ingress
version: 0.1.0
version: 0.2.0
appVersion: 0.1.0
description: gke-ingress and related resources
sources:
Expand All @@ -12,4 +12,4 @@ keywords:
- ingress
annotations:
artifacthub.io/changes: |
- Initial chart
- Fix service
2 changes: 1 addition & 1 deletion charts/gke-ingress/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gke-ingress

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square) ![Release Status](https://github.com/ricardo-ch/helm-charts/workflows/Release%20Charts/badge.svg) [![License](https://img.shields.io/github/license/ricardo-ch/helm-charts)](https://github.com/ricardo-ch/helm-charts/blob/main/LICENSE)
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square) ![Release Status](https://github.com/ricardo-ch/helm-charts/workflows/Release%20Charts/badge.svg) [![License](https://img.shields.io/github/license/ricardo-ch/helm-charts)](https://github.com/ricardo-ch/helm-charts/blob/main/LICENSE)

gke-ingress and related resources

Expand Down
58 changes: 0 additions & 58 deletions charts/gke-ingress/templates/_helpers.tpl

This file was deleted.

9 changes: 4 additions & 5 deletions charts/gke-ingress/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{{range .Values.service}}
{{ with .Values.service }}
apiVersion: v1
kind: Service
metadata:
name: {{ .name }}
namespace: {{ default "istio-ingress" .namespace}}
labels:
{{- include "gke-ingress.labels" . | nindent 4 }}
{{- .labels | toYaml | nindent 4 }}
annotations:
{{- .annotations | toYaml | nindent 4 }}
{{- .annotations | toYaml | nindent 4 }}
spec:
type: {{ .type }}
ports:
{{ .ports | toYaml | indent 4 }}
selector:
{{- include "gke-ingress.selectorLabels" . | nindent 4 }}
---
{{- .selector | toYaml | nindent 4 }}
{{ end }}

0 comments on commit 288bed8

Please sign in to comment.