-
Notifications
You must be signed in to change notification settings - Fork 60
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
glowup: prefect-server chart #213
Conversation
# -- sets PREFECT_UI_API_URL; should be publicly accessible API URL; UI will not work unless set | ||
publicApiUrl: "" | ||
# -- sets PREFECT_UI_API_URL; should be publicly accessible API URL | ||
publicApiUrl: http://localhost:4200/api |
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.
providing a default value to for the UI url for ease of new users
this was a test
charts/prefect-server/values.yaml
Outdated
# -- password for the custom user to create. Ignored if `auth.existingSecret` with key `password` is provided | ||
password: "" | ||
# -- password for the custom user. Ignored if `auth.existingSecret` with key `password` is provided | ||
password: "prefect-rocks" |
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.
providing a default password so that chart install doesnt fail if the user doesn't make any changes
|
||
Without making any modifications to the `values.yaml` file, you can access the Prefect UI by port forwarding either the Server `pod` or `service` with the following command and visiting [http:localhost:4200](http:localhost:4200): | ||
```console | ||
kubectl port-forward svc/prefect-server 4200:4200 |
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.
wow, i didn't know you could port-forward to a service. TIL
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 is awesome
Co-authored-by: Edward Park <ed.sh.park@gmail.com>
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 is spectacular
Resolves #187
Resolves #107
Resolves #199 - Thanks to @MrCoffey for the research & documentation contribution!
Default postgresql password & API URL
Also tested with an existing secret and everything looks good