-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from Karandash8/72-add-support-for-helm-values…
…-file-in-kistomize 72 add support for helm values file in kistomize
- Loading branch information
Showing
11 changed files
with
141 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
tests/manual/output/management/app_11/deployment_hello-world.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: hello-world | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/name: hello-world | ||
app.kubernetes.io/version: 1.16.0 | ||
helm.sh/chart: hello-world-0.1.0 | ||
name: hello-world | ||
spec: | ||
replicas: 2 | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/instance: hello-world | ||
app.kubernetes.io/name: hello-world | ||
template: | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: hello-world | ||
app.kubernetes.io/name: hello-world | ||
spec: | ||
containers: | ||
- image: nginx:1.16.0 | ||
imagePullPolicy: IfNotPresent | ||
livenessProbe: | ||
httpGet: | ||
path: / | ||
port: http | ||
name: hello-world | ||
ports: | ||
- containerPort: 80 | ||
name: http | ||
protocol: TCP | ||
readinessProbe: | ||
httpGet: | ||
path: / | ||
port: http | ||
serviceAccountName: hello-world |
21 changes: 21 additions & 0 deletions
21
tests/manual/output/management/app_11/service_hello-world.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: hello-world | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/name: hello-world | ||
app.kubernetes.io/version: 1.16.0 | ||
helm.sh/chart: hello-world-0.1.0 | ||
name: hello-world | ||
spec: | ||
ports: | ||
- name: http | ||
port: 80 | ||
protocol: TCP | ||
targetPort: http | ||
selector: | ||
app.kubernetes.io/instance: hello-world | ||
app.kubernetes.io/name: hello-world | ||
type: ClusterIP |
11 changes: 11 additions & 0 deletions
11
tests/manual/output/management/app_11/serviceaccount_hello-world.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
labels: | ||
app.kubernetes.io/instance: hello-world | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/name: hello-world | ||
app.kubernetes.io/version: 1.16.0 | ||
helm.sh/chart: hello-world-0.1.0 | ||
name: hello-world |
20 changes: 20 additions & 0 deletions
20
tests/manual/output/management/service_deployer/Application_app-11-management.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: app-11-management | ||
namespace: argocd | ||
finalizers: | ||
- resources-finalizer.argocd.argoproj.io | ||
spec: | ||
project: management | ||
source: | ||
repoURL: url | ||
targetRevision: revision | ||
path: output/management/app_11 | ||
destination: | ||
server: management-api-server | ||
namespace: kube-default | ||
syncPolicy: | ||
syncOptions: | ||
- ServerSideApply=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
helmCharts: | ||
- name: hello-world | ||
namespace: {{ namespace }} | ||
releaseName: hello-world | ||
repo: https://helm.github.io/examples | ||
version: {{ version }} | ||
valuesFile: values.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
replicaCount: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters