Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.DS_Store
._.DS_Store
**/.DS_Store
**/._.DS_Store
1 change: 1 addition & 0 deletions charts/hello-world/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ version: 0.1.0
# 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.
# test
appVersion: "1.16.0"
3 changes: 3 additions & 0 deletions charts/hello-world/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "hello-world.fullname" . }}
namespace: {{ .Values.namespace }}
labels:
{{- include "hello-world.labels" . | nindent 4 }}
spec:
Expand Down Expand Up @@ -31,3 +32,5 @@ spec:
httpGet:
path: /
port: http
resources:
{{- toJson .Values.resources | nindent 12 }}
1 change: 1 addition & 0 deletions charts/hello-world/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Default values for hello-world.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
namespace: default

replicaCount: 1

Expand Down