Compare commits
4 Commits
barman-clo
...
barman-clo
Author | SHA1 | Date | |
---|---|---|---|
a48262f115 | |||
bd458a3a3d | |||
3aa9113d24 | |||
1fe8881dfb |
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: barman-cloud
|
name: barman-cloud
|
||||||
version: 0.1.0
|
version: 0.2.3
|
||||||
description: Barman Cloud Plugin
|
description: Barman Cloud Plugin
|
||||||
keywords:
|
keywords:
|
||||||
- barman-cloud
|
- barman-cloud
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
# barman-cloud
|
# barman-cloud
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Barman Cloud Plugin
|
Barman Cloud Plugin
|
||||||
|
|
||||||
@@ -25,11 +25,9 @@ Barman Cloud Plugin
|
|||||||
|
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| existingSecretKey | string | `"cf-tunnel-token"` | Name of key that contains the token in the existingSecret |
|
|
||||||
| existingSecretName | string | `"cloudflared-secret"` | Name of existing secret that contains Cloudflare token |
|
|
||||||
| image | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/cloudnative-pg/plugin-barman-cloud","tag":"v0.4.0"}` | Default image |
|
| image | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/cloudnative-pg/plugin-barman-cloud","tag":"v0.4.0"}` | Default image |
|
||||||
| name | string | `"barman-cloud"` | Name override of release |
|
| name | string | `"barman-cloud"` | Name override of release |
|
||||||
| resources | object | `{"requests":{"cpu":"10m","memory":"128Mi"}}` | Default resources |
|
| service | object | `{"listenPort":9090}` | Default service |
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
|
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
|
||||||
|
@@ -12,7 +12,7 @@ roleRef:
|
|||||||
name: metrics-auth-role
|
name: metrics-auth-role
|
||||||
subjects:
|
subjects:
|
||||||
- kind: ServiceAccount
|
- kind: ServiceAccount
|
||||||
name: plugin-barman-cloud
|
name: {{ .Release.Name }}-barman-cloud
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
|
|
||||||
---
|
---
|
||||||
@@ -30,5 +30,5 @@ roleRef:
|
|||||||
name: plugin-barman-cloud
|
name: plugin-barman-cloud
|
||||||
subjects:
|
subjects:
|
||||||
- kind: ServiceAccount
|
- kind: ServiceAccount
|
||||||
name: plugin-barman-cloud
|
name: {{ .Release.Name }}-barman-cloud
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
|
@@ -12,7 +12,8 @@ controllers:
|
|||||||
app: {{ .Values.name }}
|
app: {{ .Values.name }}
|
||||||
replicas: 1
|
replicas: 1
|
||||||
strategy: Recreate
|
strategy: Recreate
|
||||||
serviceAccountName: plugin-barman-cloud
|
serviceAccount:
|
||||||
|
name: {{ .Release.Name }}-barman-cloud
|
||||||
pod:
|
pod:
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsNonRoot: true
|
runAsNonRoot: true
|
||||||
@@ -41,7 +42,6 @@ controllers:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
key: SIDECAR_IMAGE
|
key: SIDECAR_IMAGE
|
||||||
name: plugin-barman-cloud-m76km67hd7
|
name: plugin-barman-cloud-m76km67hd7
|
||||||
|
|
||||||
securityContext:
|
securityContext:
|
||||||
allowPrivilegeEscalation: false
|
allowPrivilegeEscalation: false
|
||||||
capabilities:
|
capabilities:
|
||||||
@@ -53,8 +53,8 @@ controllers:
|
|||||||
seccompProfile:
|
seccompProfile:
|
||||||
type: RuntimeDefault
|
type: RuntimeDefault
|
||||||
serviceAccount:
|
serviceAccount:
|
||||||
plugin-barman-cloud:
|
barman-cloud:
|
||||||
enabled: {{ .Values.serviceAccount.enabled }}
|
enabled: true
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
controller: main
|
controller: main
|
||||||
|
@@ -13,5 +13,5 @@ roleRef:
|
|||||||
name: leader-election-role
|
name: leader-election-role
|
||||||
subjects:
|
subjects:
|
||||||
- kind: ServiceAccount
|
- kind: ServiceAccount
|
||||||
name: plugin-barman-cloud
|
name: {{ .Release.Name }}-barman-cloud
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
|
@@ -1,20 +1,12 @@
|
|||||||
# -- Name override of release
|
# -- Name override of release
|
||||||
name: barman-cloud
|
name: barman-cloud
|
||||||
|
|
||||||
# -- Name of existing secret that contains Cloudflare token
|
|
||||||
existingSecretName: cloudflared-secret
|
|
||||||
|
|
||||||
# -- Name of key that contains the token in the existingSecret
|
|
||||||
existingSecretKey: cf-tunnel-token
|
|
||||||
|
|
||||||
# -- Default image
|
# -- Default image
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/cloudnative-pg/plugin-barman-cloud
|
repository: ghcr.io/cloudnative-pg/plugin-barman-cloud
|
||||||
tag: "v0.4.0"
|
tag: "v0.4.0"
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# -- Default resources
|
# -- Default service
|
||||||
resources:
|
service:
|
||||||
requests:
|
listenPort: 9090
|
||||||
cpu: 10m
|
|
||||||
memory: 128Mi
|
|
||||||
|
Reference in New Issue
Block a user