Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sentinel fix, remove hardcoded sentinel svc port, fix operator deploy… #597

Merged
merged 3 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ spec:

foundMaster=false

while [ "$foundMaster" == "false" ]
while [ "$foundMaster" = "false" ]
do
for i in $loop
do
Expand All @@ -722,7 +722,7 @@ spec:
fi
done

if [ "$foundMaster" == "true" ]; then
if [ "$foundMaster" = "true" ]; then
break
else
echo "Master not found, wait for 30s before attempting again"
Expand Down Expand Up @@ -787,7 +787,6 @@ spec:
ports:
- port: 5000
targetPort: 5000
nodePort: 32003
name: <AUTHORIZATION_REDIS_SENTINEL>-svc
selector:
app: <AUTHORIZATION_REDIS_SENTINEL>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,6 @@ spec:
configVersion: v2.0.0-alpha
forceRemoveModule: true

# For OpenShift Container Platform only
# enabled: Enable/Disable OpenShift Ingress Controller
# Allowed values:
# true: enable use of OpenShift Ingress Controller
# false: disable use of OpenShift Ingress Controller only if you have your own ingress controller. Set the appropriate annotations for the ingresses in the proxy-server section
# Default value: false
openshift: false

components:
# For Kubernetes Container Platform only
# enabled: Enable/Disable NGINX Ingress Controller
Expand Down
Loading