Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
125b34a
Update README.md
prameetu20codes Jan 22, 2026
b407eb0
Update README.md
prameetu20codes Jan 22, 2026
5debaf4
Update kustomization.yaml
prameetu20codes Jan 28, 2026
f874236
Create appsettings.json
prameetu20codes Jan 28, 2026
dd9c03d
Delete kustomize/helloWorld/configMap.yaml
prameetu20codes Jan 28, 2026
6750ecc
Update appsettings.json
prameetu20codes Jan 28, 2026
6924b13
Update appsettings.json
prameetu20codes Jan 28, 2026
f5336e0
Update appsettings.json
prameetu20codes Jan 28, 2026
c6308af
Update deployment.yaml
prameetu20codes Jan 28, 2026
5b1434d
Update README.md
prameetu20codes Jan 29, 2026
a82a5b5
Update README.md
prameetu20codes Jan 29, 2026
4d39765
Update README.md
prameetu20codes Jan 29, 2026
65050bb
Update README.md
prameetu20codes Jan 29, 2026
368ca3d
Update kustomization.yaml
prameetu20codes Jan 29, 2026
cf92424
Update kustomization.yaml
prameetu20codes Jan 29, 2026
1c99f31
Update kustomization.yaml
prameetu20codes Jan 29, 2026
7075633
Update deployment.yaml
prameetu20codes Jan 30, 2026
0fae96a
Create values.yaml
prameetu20codes Jan 30, 2026
565125e
Update values.yaml
prameetu20codes Jan 30, 2026
5911d73
Delete kustomize/helloWorld/values.yaml
prameetu20codes Feb 1, 2026
dcfbdec
Create deploymentpatch.yaml
prameetu20codes Feb 1, 2026
4f62bcc
Update kustomization.yaml
prameetu20codes Feb 1, 2026
b803ae5
Update deployment.yaml
prameetu20codes Feb 1, 2026
1a9f4c2
Update deploymentpatch.yaml
prameetu20codes Feb 1, 2026
17c3099
Rename kustomize/helloWorld/kustomization.yaml to kustomize/helloWorl…
prameetu20codes Feb 1, 2026
d740a04
Rename kustomize/helloWorld/patches/kustomization.yaml to kustomize/h…
prameetu20codes Feb 1, 2026
b0307a6
Rename kustomize/helloWorld/deploymentpatch.yaml to kustomize/helloWo…
prameetu20codes Feb 1, 2026
8a160b1
Update kustomization.yaml
prameetu20codes Feb 1, 2026
6c33a2b
Update deployment.yaml
prameetu20codes Feb 2, 2026
c798f7d
Update kustomization.yaml
prameetu20codes Feb 3, 2026
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Harness Docs Repo

This repo (`harness-docs`) contains examples for Harness quickstarts and other documentation.
#testasasasassasaasasasaassasaasaasasas

## Links

Expand Down
4 changes: 4 additions & 0 deletions kustomize/helloWorld/appsettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"altGreeting": "Good Morning!",
"enableRisky": "<+secrets.getValue("secret_id_1")>"
}
7 changes: 0 additions & 7 deletions kustomize/helloWorld/configMap.yaml

This file was deleted.

5 changes: 2 additions & 3 deletions kustomize/helloWorld/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ spec:
spec:
containers:
- name: the-container
image: monopole/hello:1
command: ["/hello",
"--port=8080",
"--enableRiskyFeature=$(ENABLE_RISKY)"]
Expand All @@ -24,10 +23,10 @@ spec:
- name: ALT_GREETING
valueFrom:
configMapKeyRef:
name: the-map
name: app-config
key: altGreeting
- name: ENABLE_RISKY
valueFrom:
configMapKeyRef:
name: the-map
name: app-config
key: enableRisky
20 changes: 13 additions & 7 deletions kustomize/helloWorld/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
# metadata:
# name: arbitrary

# Example configuration for the webserver
# at https://github.com/monopole/hello
commonLabels:
app: hello

resources:
- deployment.yaml
- service.yaml
- configMap.yaml
- deployment.yaml
- service.yaml

patches:
- path: patches/deploymentpatch.yaml

configMapGenerator:
- name: app-config
files:
- appsettings.json

generatorOptions:
disableNameSuffixHash: true
10 changes: 10 additions & 0 deletions kustomize/helloWorld/patches/deploymentpatch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: the-deployment
spec:
template:
spec:
containers:
- name: the-container
image: <+artifacts.primary.image>