Fix issues with deployer.

This commit is contained in:
Nawaz Dhandala 2020-04-19 14:28:17 +02:00
parent 2e2f1a7e8b
commit e7a890eb55
No known key found for this signature in database
GPG Key ID: 43C184A0DB24F9F6
5 changed files with 11 additions and 10 deletions

View File

@ -2,7 +2,7 @@
Run:
`gcloud auth configure-docker` to auth GCR registry and then,
`bash gcp-deployer/deploy.sh` from `app` (root) directory.
```
gcloud auth configure-docker #to auth GCR registry and then,
bash gcp-deployer/deploy.sh #from `app` (root) directory.
```

View File

@ -1,10 +1,10 @@
apiVersion: app.k8s.io/v1beta1
kind: Application
metadata:
name: "{{ .Release.Name }}"
namespace: "{{ .Release.Namespace }}"
name: {{ .Release.Name }}
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: "{{ .Release.Name }}"
app.kubernetes.io/name: {{ .Release.Name }}
annotations:
marketplace.cloud.google.com/deploy-info: '{"partner_id": "fyipe-public", "product_id": "fyipe", "partner_name": "Fyipe"}'
spec:
@ -13,7 +13,7 @@ spec:
version: '3.0.0'
selector:
matchLabels:
app.kubernetes.io/name: "{{ .Release.Name }}"
app.kubernetes.io/name: {{ .Release.Name }}
componentKinds:
- group: batch/v1
kind: Job

View File

@ -1,7 +1,8 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: $name-ubbagent-config
name: {{ printf "%s-%s" $.Release.Name "ubbagent-config" }}
namespace: {{ .Release.Namespace }}
data:
config.yaml: |
# The identity section contains authentication information used

View File

@ -1,4 +1,4 @@
apiVersion: v2
apiVersion: v1
name: Fyipe
version: 3.0.0
description: One complete DevOps and IT Ops platform.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB