forked from OT-CONTAINER-KIT/redis-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix] : setup label redis_setup_type to sentinel (OT-CONTAINER-KIT#679)
* fix label redis_setup_type to sentinel Signed-off-by: drivebyer <wuyangmuc@gmail.com> * add test Signed-off-by: drivebyer <wuyangmuc@gmail.com> --------- Signed-off-by: drivebyer <wuyangmuc@gmail.com> Signed-off-by: Matt Robinson <mattrobinsonsre@gmail.com>
- Loading branch information
1 parent
c2ac598
commit 8892165
Showing
5 changed files
with
162 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
apiVersion: kuttl.dev/v1beta1 | ||
kind: TestStep | ||
apply: | ||
- sentinel.yaml | ||
assert: | ||
- ready-sts.yaml | ||
- ready-svc.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
apiVersion: apps/v1 | ||
kind: StatefulSet | ||
metadata: | ||
annotations: | ||
redis.opstreelabs.in: "true" | ||
redis.opstreelabs.instance: redis-sentinel | ||
labels: | ||
app: redis-sentinel-sentinel | ||
redis_setup_type: sentinel | ||
role: sentinel | ||
name: redis-sentinel-sentinel | ||
ownerReferences: | ||
- apiVersion: redis.redis.opstreelabs.in/v1beta2 | ||
controller: true | ||
kind: RedisSentinel | ||
name: redis-sentinel | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: redis-sentinel-sentinel | ||
redis_setup_type: sentinel | ||
role: sentinel | ||
serviceName: redis-sentinel-sentinel-headless | ||
template: | ||
metadata: | ||
annotations: | ||
redis.opstreelabs.in: "true" | ||
redis.opstreelabs.instance: redis-sentinel | ||
labels: | ||
app: redis-sentinel-sentinel | ||
redis_setup_type: sentinel | ||
role: sentinel | ||
status: | ||
readyReplicas: 3 | ||
replicas: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
annotations: | ||
prometheus.io/port: "9121" | ||
prometheus.io/scrape: "true" | ||
redis.opstreelabs.in: "true" | ||
redis.opstreelabs.instance: redis-sentinel | ||
labels: | ||
app: redis-sentinel-sentinel | ||
redis_setup_type: sentinel | ||
role: sentinel | ||
name: redis-sentinel-sentinel | ||
ownerReferences: | ||
- apiVersion: redis.redis.opstreelabs.in/v1beta2 | ||
controller: true | ||
kind: RedisSentinel | ||
name: redis-sentinel | ||
spec: | ||
ports: | ||
- name: sentinel-client | ||
port: 26379 | ||
protocol: TCP | ||
targetPort: 26379 | ||
selector: | ||
app: redis-sentinel-sentinel | ||
redis_setup_type: sentinel | ||
role: sentinel | ||
type: ClusterIP | ||
status: | ||
loadBalancer: {} | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
annotations: | ||
prometheus.io/port: "9121" | ||
prometheus.io/scrape: "true" | ||
redis.opstreelabs.in: "true" | ||
redis.opstreelabs.instance: redis-sentinel | ||
labels: | ||
app: redis-sentinel-sentinel | ||
redis_setup_type: sentinel | ||
role: sentinel | ||
name: redis-sentinel-sentinel-additional | ||
ownerReferences: | ||
- apiVersion: redis.redis.opstreelabs.in/v1beta2 | ||
controller: true | ||
kind: RedisSentinel | ||
name: redis-sentinel | ||
spec: | ||
ports: | ||
- name: sentinel-client | ||
port: 26379 | ||
protocol: TCP | ||
targetPort: 26379 | ||
selector: | ||
app: redis-sentinel-sentinel | ||
redis_setup_type: sentinel | ||
role: sentinel | ||
type: ClusterIP | ||
status: | ||
loadBalancer: {} | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
annotations: | ||
prometheus.io/port: "9121" | ||
prometheus.io/scrape: "true" | ||
redis.opstreelabs.in: "true" | ||
redis.opstreelabs.instance: redis-sentinel | ||
labels: | ||
app: redis-sentinel-sentinel | ||
redis_setup_type: sentinel | ||
role: sentinel | ||
name: redis-sentinel-sentinel-headless | ||
ownerReferences: | ||
- apiVersion: redis.redis.opstreelabs.in/v1beta2 | ||
controller: true | ||
kind: RedisSentinel | ||
name: redis-sentinel | ||
spec: | ||
clusterIP: None | ||
ports: | ||
- name: sentinel-client | ||
port: 26379 | ||
protocol: TCP | ||
targetPort: 26379 | ||
selector: | ||
app: redis-sentinel-sentinel | ||
redis_setup_type: sentinel | ||
role: sentinel | ||
type: ClusterIP | ||
status: | ||
loadBalancer: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
apiVersion: redis.redis.opstreelabs.in/v1beta2 | ||
kind: RedisSentinel | ||
metadata: | ||
name: redis-sentinel | ||
spec: | ||
clusterSize: 3 | ||
podSecurityContext: | ||
runAsUser: 1000 | ||
fsGroup: 1000 | ||
redisSentinelConfig: | ||
redisReplicationName : redis-replication | ||
kubernetesConfig: | ||
image: quay.io/opstree/redis-sentinel:latest | ||
imagePullPolicy: Always | ||
resources: | ||
requests: | ||
cpu: 101m | ||
memory: 128Mi | ||
limits: | ||
cpu: 101m | ||
memory: 128Mi |