Skip to content

Commit

Permalink
Fix service to correctly expose 8080 port
Browse files Browse the repository at this point in the history
  • Loading branch information
ileixe committed Apr 10, 2023
1 parent 499266e commit d12c67e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Private helm chart
==================

# Available charts
### Available charts
- kea-dhcp
- pypi-server

# Getting started
### Getting started

```bash
helm repo add ileixe https://ileixe.github.io/charts/
Expand Down
8 changes: 4 additions & 4 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ entries:
kea-dhcp:
- apiVersion: v2
appVersion: 1.16.0
created: "2023-04-10T20:07:22.272774221+09:00"
created: "2023-04-10T20:59:21.336761156+09:00"
dependencies:
- name: postgresql
repository: '@stable'
Expand All @@ -18,9 +18,9 @@ entries:
pypi-server:
- apiVersion: v2
appVersion: 1.4.2
created: "2023-04-10T20:07:22.273213198+09:00"
created: "2023-04-10T20:59:21.33721547+09:00"
description: A high availablility, persistent, auto-scaling pypi-server application.
digest: ae411f2af2053c29e280b555220be65e7af445232683976ea000c6c61db79044
digest: a91d599957f13557052cd73d8456270f3bc557a7fe6717d0618738bbfa8ae946
home: https://github.com/cgsimmons/charts/tree/master/pypi-server
icon: https://cgsimmons.github.io/charts/icons/pypi-server.svg
keywords:
Expand All @@ -37,4 +37,4 @@ entries:
urls:
- pypi-server-0.2.0.tgz
version: 0.2.0
generated: "2023-04-10T20:07:22.269341764+09:00"
generated: "2023-04-10T20:59:21.332903163+09:00"
Binary file modified pypi-server-0.2.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion pypi-server/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
clusterIP: None
ports:
- port: {{ .Values.service.port }}
targetPort: http
targetPort: 8080
protocol: TCP
name: http
selector: {{- include "pypiServer.selectorLabels" . | nindent 4 }}
2 changes: 1 addition & 1 deletion pypi-server/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
args:
- --passwords={{if eq .Values.auth.actions "." }}.{{ else }}/config/passwords{{ end }}
- --authenticate={{ .Values.auth.actions }}
- --port=80
- --port=8080
{{- range .Values.server.extraArgs }}
- {{ . }}
{{- end }}
Expand Down

0 comments on commit d12c67e

Please sign in to comment.