mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 15:49:10 +00:00
Fix issues with deployer.
This commit is contained in:
parent
2e2f1a7e8b
commit
e7a890eb55
@ -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.
|
||||
```
|
||||
|
@ -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
|
@ -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
|
||||
|
@ -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 |
Loading…
Reference in New Issue
Block a user