-
Notifications
You must be signed in to change notification settings - Fork 24
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
ENDOC-501 In bundler k8ssvcApi renamed to componentManagerApi #511
Conversation
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.
Looks good - but I'll feel better if you or @jyunmitch also test at least the bundler export step.
@@ -29,7 +29,7 @@ Configure a Keycloak client to grant the bundler access to the required Entando | |||
|
|||
1. Log in to Keycloak using the admin credentials. The URL will be similar to `http://YOUR-HOST-NAME/auth/` and can be verified with the following command: | |||
``` sh | |||
kubectl describe ingress/default-sso-in-namespace | |||
ent kubectl describe ingress/default-sso-in-namespace-ingress |
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.
Let's leave this as kubectl and add the missing -n entando. Looking at the rest of the tutorial, I think that's clearest.
``` | ||
kubectl get secrets -n YOUR-NAMESPACE | ||
sudo kubectl get secrets -n YOUR-NAMESPACE |
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.
There are 2 kubectl commands on this page. Let's leave them both as kubectl (without ent) and make sure they have the -n setting so they match. The prod page right now doesn't match since one is ent kubectl -n entando and the other is kubectl -n YOUR-NAMESPACE, on the same page.
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.
One last tweak
@@ -7,12 +7,12 @@ Entando Identity Management is based on open source Keycloak. Entando Applicatio | |||
Keycloak is protected by a Secret deployed to your Entando Kubernetes instance. You can query Kubernetes for the Secret's default admin credentials via the following, modifying this command to use your environment's namespace and Secret name: | |||
|
|||
``` | |||
ent kubectl get secret default-sso-in-namespace-admin-secret -n entando -o go-template="{{println}}Username: {{.data.username | base64decode}}{{println}}Password: {{.data.password | base64decode}}{{println}}{{println}}" | |||
kubectl get secret default-sso-in-namespace-admin-secret -n entando -o go-template="{{println}}Username: {{.data.username | base64decode}}{{println}}Password: {{.data.password | base64decode}}{{println}}{{println}}" -n entando |
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.
This one is sneaky. There's already a -n entando in the middle before the -o.
@@ -7,12 +7,12 @@ Entando Identity Management is based on open source Keycloak. Entando Applicatio | |||
Keycloak is protected by a Secret deployed to your Entando Kubernetes instance. You can query Kubernetes for the Secret's default admin credentials via the following, modifying this command to use your environment's namespace and Secret name: | |||
|
|||
``` | |||
ent kubectl get secret default-sso-in-namespace-admin-secret -n entando -o go-template="{{println}}Username: {{.data.username | base64decode}}{{println}}Password: {{.data.password | base64decode}}{{println}}{{println}}" | |||
kubectl get secret default-sso-in-namespace-admin-secret -n entando -o go-template="{{println}}Username: {{.data.username | base64decode}}{{println}}Password: {{.data.password | base64decode}}{{println}}{{println}}" -n entando |
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.
Ditto
No description provided.