Skip to content

Commit 24cfbc7

Browse files
authored
fix typo about containerPort in chart (#16)
1 parent 6194524 commit 24cfbc7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

charts/localstack/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ annotations:
22
category: Infrastructure
33
apiVersion: v2
44
appVersion: latest
5-
version: 0.1.3
5+
version: 0.1.4
66
name: localstack
77
description: A fully functional local AWS cloud stack
88
type: application

charts/localstack/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ The following table lists the configurable parameters of the Localstack chart an
106106

107107
## Change Log
108108

109+
* v0.1.4: Fix a typo that breaks the installation
109110
* v0.1.3: Allow easy exposure of multiple API services from values config
110111

111112
## License

charts/localstack/templates/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
imagePullPolicy: {{ .Values.image.pullPolicy }}
3434
ports:
3535
- name: {{ .Values.service.edgeService.name }}
36-
container: {{ .Values.service.edgeService.targetPort }}
36+
containerPort: {{ .Values.service.edgeService.targetPort }}
3737
protocol: TCP
3838
{{- range .Values.service.apiServices }}
3939
- name: {{ .name }}

0 commit comments

Comments
 (0)