Skip to content

Commit

Permalink
Remove Service -k8s suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomarangoni committed Apr 21, 2021
1 parent 30ef6ac commit 56df5fb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/kangal/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
paths:
- path: {{ $ingressPath }}
backend:
serviceName: {{ $fullName }}-{{ $key }}-k8s
serviceName: {{ $fullName }}-{{ $key }}
servicePort: {{ $labelPort }}
{{- else }}
{{- range $key,$host := $hostValue }}
Expand All @@ -40,7 +40,7 @@ spec:
paths:
- path: {{ $ingressPath }}
backend:
serviceName: {{ $fullName }}-{{ $key }}-k8s
serviceName: {{ $fullName }}-{{ $key }}
servicePort: {{ $labelPort }}
{{- end }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/kangal/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
apiVersion: v1
kind: Service
metadata:
name: {{ template "<CHARTNAME>.fullname" $ }}-{{ $key }}-k8s
name: {{ template "<CHARTNAME>.fullname" $ }}-{{ $key }}
labels:
app: {{ template "<CHARTNAME>.name" $ }}-{{ $key }}
chart: {{ template "<CHARTNAME>.chart" $ }}
Expand Down
2 changes: 1 addition & 1 deletion examples/constant_load.jmx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain">kangal-proxy-k8s.default</stringProp>
<stringProp name="HTTPSampler.domain">kangal-proxy.default</stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.protocol">http</stringProp>
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
Expand Down
2 changes: 1 addition & 1 deletion examples/linear_load.jmx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain">kangal-proxy-k8s.default</stringProp>
<stringProp name="HTTPSampler.domain">kangal-proxy.default</stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.protocol">http</stringProp>
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
Expand Down

0 comments on commit 56df5fb

Please sign in to comment.