Skip to content

Commit fe0fba7

Browse files
committed
oke-gitops-1.1.1
1 parent 68a9c39 commit fe0fba7

File tree

59 files changed

+351
-400
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+351
-400
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"chart": {
3+
"repo": "https://example-app/chart",
4+
"name": "app",
5+
"version": "*",
6+
"release-name": "example-app"
7+
},
8+
"namespace": "default"
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"chart": {
3+
"repo": "https://example-app/chart",
4+
"name": "app",
5+
"version": "1.0.0",
6+
"release-name": "example-app"
7+
},
8+
"namespace": "default"
9+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
apiVersion: v2
2+
name: example-app
3+
description: A Helm chart for example-app
4+
type: application
5+
version: 0.1.0
6+
appVersion: "1.0.0"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: {{ .Chart.Name }}
5+
spec:
6+
replicas: {{ .Values.replicaCount }}
7+
selector:
8+
matchLabels:
9+
app: {{ .Chart.Name }}
10+
template:
11+
metadata:
12+
labels:
13+
app: {{ .Chart.Name }}
14+
spec:
15+
containers:
16+
- name: {{ .Chart.Name }}
17+
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
18+
ports:
19+
- containerPort: 80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
apiVersion: v1
2+
kind: Service
3+
metadata:
4+
name: {{ .Chart.Name }}
5+
spec:
6+
type: {{ .Values.service.type }}
7+
ports:
8+
- port: {{ .Values.service.port }}
9+
targetPort: 80
10+
protocol: TCP
11+
selector:
12+
app: {{ .Chart.Name }}

app-dev/devops-and-containers/oke/oke-gitops/repos/system-cluster-config/apps/helm/values/example-app/clusters/values-in-cluster.yml renamed to app-dev/devops-and-containers/oke/oke-gitops/repos/apps-cluster-config/apps/app-category/example-app/helm/values/clusters/values-in-cluster.yml

File renamed without changes.

app-dev/devops-and-containers/oke/oke-gitops/repos/apps-cluster-config/apps/helm/values/example-app/values-common.yml renamed to app-dev/devops-and-containers/oke/oke-gitops/repos/apps-cluster-config/apps/app-category/example-app/helm/values/values-common.yml

File renamed without changes.

app-dev/devops-and-containers/oke/oke-gitops/repos/apps-cluster-config/apps/helm/values/example-app/env-type/values-no-prod.yml renamed to app-dev/devops-and-containers/oke/oke-gitops/repos/apps-cluster-config/apps/app-category/example-app/helm/values/values-no-prod.yml

File renamed without changes.

app-dev/devops-and-containers/oke/oke-gitops/repos/apps-cluster-config/apps/helm/values/example-app/envs/values-prod.yml renamed to app-dev/devops-and-containers/oke/oke-gitops/repos/apps-cluster-config/apps/app-category/example-app/helm/values/values-prod.yml

File renamed without changes.

app-dev/devops-and-containers/oke/oke-gitops/repos/apps-cluster-config/apps/helm/values/example-app/envs/values-qa.yml renamed to app-dev/devops-and-containers/oke/oke-gitops/repos/apps-cluster-config/apps/app-category/example-app/helm/values/values-qa.yml

File renamed without changes.

0 commit comments

Comments
 (0)