-
Notifications
You must be signed in to change notification settings - Fork 118
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
do not allow multiple Kiali CRs with CWA=true and the same instance_name #849
Merged
Conversation
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
jmazzitelli
added
the
requires docs PR
Requires kiali.io or other documentation updates
label
Nov 18, 2024
ran a couple of the molecule tests that are relevant... all pass
|
To test:
kubectl apply -f - <<EOM
apiVersion: kiali.io/v1alpha1
kind: Kiali
metadata:
name: kiali
namespace: default
spec:
auth:
strategy: anonymous
deployment:
cluster_wide_access: true
namespace: default
image_name: localhost:5000/kiali/kiali
image_version: dev
service_type: ClusterIP
istio_namespace: istio-system
version: default
EOM
results in: {
"conditions": [
{
"ansibleResult": {
"changed": 1,
"completion": "2024-11-19T16:04:49.327172",
"failures": 1,
"ok": 23,
"skipped": 14
},
"lastTransitionTime": "2024-11-19T16:04:49Z",
"message": "There is already a Kiali Server installed with `deployment.instance_name` of [kiali] that has 'deployment.cluster_wide_access' set to true. You must use a different instance name.",
"reason": "Failed",
"status": "True",
"type": "Failure"
},
...
kubectl patch kiali kiali -n default --type=merge -p '{"spec":{"deployment":{"instance_name":"anotherkiali"}}}'
shows normal status. And you should have a Kiali pod in the default namespace:
|
ferhoyos
approved these changes
Nov 25, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
part of: kiali/kiali#7922
see the docs PR that will warn against this condition