mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 21:23:12 +01:00
Create the CI and testing infrastructure for e2e testing. Running the ci task now will push the plugin and sidecar images to a local registry, start kind, install the CloudNativePG and cert-manager operators, and then install the plugin-barman-cloud one. No actual test is implemented. Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
12 lines
331 B
YAML
12 lines
331 B
YAML
# Kind configuration file for running e2e tests
|
|
# Certificates must be mounted on each node because the registry is using TLS
|
|
|
|
kind: Cluster
|
|
apiVersion: kind.x-k8s.io/v1alpha4
|
|
nodes:
|
|
- role: control-plane
|
|
extraMounts:
|
|
- hostPath: ../../certs/ca.pem
|
|
containerPath: /usr/local/share/ca-certificates/ca.crt
|
|
readOnly: true
|