Skip to content

Commit

Permalink
Bump chart to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
atrakic committed Jun 15, 2024
1 parent 793dc78 commit c26a35d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/dotnet-api/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.1
version: 0.1.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.0.1"
appVersion: "0.1.2"
Binary file added charts/dotnet-api/dotnet-api-0.1.2.tgz
Binary file not shown.
5 changes: 5 additions & 0 deletions charts/dotnet-api/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ spec:
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
env:
{{- range $key, $val := .Values.image.env }}
- name: {{ $key }}
value: {{ $val | quote }}
{{- end }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
Expand Down
7 changes: 5 additions & 2 deletions charts/dotnet-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
replicaCount: 1

image:
repository: nginx
repository: docker pull ghcr.io/atrakic/azure-aks-dotnet-api
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
env:
ASPNETCORE_HTTP_PORTS: "http://*:3000"
#ASPNETCORE_ENVIRONMENT: "Development"

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -49,7 +52,7 @@ ingress:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
- host: dotnet-api.local
paths:
- path: /
pathType: ImplementationSpecific
Expand Down

0 comments on commit c26a35d

Please sign in to comment.