forked from crossplane-contrib/provider-upjet-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcluster.yaml
More file actions
70 lines (65 loc) · 1.8 KB
/
Copy pathcluster.yaml
File metadata and controls
70 lines (65 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# SPDX-FileCopyrightText: 2024 The Crossplane Authors <https://crossplane.io>
#
# SPDX-License-Identifier: Apache-2.0
apiVersion: rds.aws.upbound.io/v1beta2
kind: Cluster
metadata:
annotations:
meta.upbound.io/example-id: rds/v1beta2/cluster
name: example
spec:
forProvider:
autoGeneratePassword: true
dbClusterParameterGroupNameSelector:
matchLabels:
testing.upbound.io/example-name: example-ci-cluster
dbInstanceParameterGroupNameSelector:
matchLabels:
testing.upbound.io/example-name: example-ci-cluster-instance
engine: aurora-postgresql
masterPasswordSecretRef:
key: password
name: sample-cluster-password
namespace: upbound-system
masterUsername: cpadmin
region: us-west-1
skipFinalSnapshot: true
writeConnectionSecretToRef:
name: sample-rds-cluster-secret
namespace: upbound-system
---
apiVersion: rds.aws.upbound.io/v1beta1
kind: ClusterParameterGroup
metadata:
annotations:
meta.upbound.io/example-id: rds/v1beta2/cluster
labels:
testing.upbound.io/example-name: example-ci-cluster
name: example-ci-cluster
spec:
forProvider:
description: RDS custom cluster parameter group
family: aurora-postgresql17
parameter:
- applyMethod: immediate
name: application_name
value: example-rds-cluster
region: us-west-1
---
apiVersion: rds.aws.upbound.io/v1beta1
kind: ParameterGroup
metadata:
annotations:
meta.upbound.io/example-id: rds/v1beta2/cluster
labels:
testing.upbound.io/example-name: example-ci-cluster-instance
name: example-parametergroup-ci-cluster-instance
spec:
forProvider:
description: example
family: aurora-postgresql17
parameter:
- applyMethod: immediate
name: application_name
value: example-cluster-instance
region: us-west-1