$ helm repo add prefect https://prefecthq.github.io/prefect-helm
$ helm search repo prefect
$ helm install my-release prefect/<chart>
Charts are automatically versioned and released together. The appVersion and prefectTag version are pinned at package time to the current release of Prefect 2.
The charts are hosted in a Helm repository deployed to the web courtesy of Github Pages.
-
Add the Prefect repository to Helm and list available charts and versions:
$ helm repo add prefect https://prefecthq.github.io/prefect-helm/ $ helm repo update $ helm search repo prefectNote: The repository includes a legacy
prefect-orionchart, which no longer receives updates and will be removed in June 2023. Please useprefect-serverinstead. -
Install the Helm chart
Using default options
$ helm install prefect/prefect-server --generate-nameSetting some typical flags for customization
# The kubernetes namespace to install into, can be anything or excluded to install in the default namespace NAMESPACE=prefect-server # The Helm "release" name, can be anything but we recommend matching the chart name NAME=prefect-server # The path to your config that overrides values in `values.yaml` CONFIG_PATH=path/to/your/config.yaml # The chart version to install VERSION=2023.03.30 helm install \ --namespace $NAMESPACE \ --version $VERSION \ --values $CONFIG_PATH \ $NAME \ prefect/prefect-server
If chart installation fails, run the same command with --debug to see additional diagnostic information.
Refer to the Helm install documentation for all options.
Development versions of the Helm chart will always be available directly from this Github repository.
-
Clone repository
-
Change to this directory
-
Download the chart dependencies
$ helm dependency update -
Install the chart
$ helm install . --generate-name
-
Look up the name of the last release
$ helm list -
Run the upgrade
# Set this name to the name of your last Helm release NAME=prefect-server # Choose a version to upgrade to or omit the flag to use the latest version VERSION=2023.03.30 helm upgrade $NAME prefect/prefect-server --version $VERSION
For development versions, make sure your cloned repository is updated (
git pull) and reference the local chart$ helm upgrade $NAME . -
Upgrades can also be used enable features or change options
NAME=prefect-server helm upgrade \ $NAME \ prefect/prefect-server
- Updates will only update infrastructure that is modified.
- You will need to continue to set any values that you set during the original install (e.g.
--set agent.enabled=trueor--values path/to/config.yaml). - If you are using the postgresql subchart with an autogenerated password, it will complain that you have not provided that password for the upgrade.
Export the password as the error asks then set it within the subchart using
$ helm upgrade ... --set postgresql.postgresqlPassword=$POSTGRESQL_PASSWORD
See comments in values.yaml.
By default, the agent and server run as an unprivileged user with a read-only root filesystem. You can customize the security context settings for both the agent and server in the values.yaml file for your use case.
If you need to install system packages or configure other settings at runtime, you can configure a writable filesystem and run as root by configuring the pod and container security context accordingly:
podSecurityContext:
runAsUser: 0
runAsNonRoot: false
fsGroup: 0
containerSecurityContext:
runAsUser: 0
# this must be false, since we are running as root
runAsNonRoot: false
# make the filesystem writable
readOnlyRootFilesystem: false
# this must be false, since we are running as root
allowPrivilegeEscalation: falseIf you are running in OpenShift, the default restricted security context constraint will prevent customization of the user. In this case, explicitly configure the runAsUser settings to null to use OpenShift-assigned settings:
podSecurityContext:
runAsUser: null
fsGroup: null
containerSecurityContext:
runAsUser: nullThe other default settings, such as a read-only root filesystem, are suitable for an OpenShift environment.
If you are running flows on your agent’s pod (i.e. with Process infrastructure), and using the Dask task runner to create Dask Kubernetes clusters, you will need to grant the following permissions within values.yaml.
role:
extraPermissions:
- apiGroups: [""]
resources: ["pods", "services"]
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
- apiGroups: ["policy"]
resources: ["poddisruptionbudgets"]
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]Prefect follows the upstream Kubernetes support policy, meaning that we test against the three most recent minor version releases of Kubernetes. The charts may be compatible with older releases of Kubernetes, however, we do not test against those versions and may choose to reject issues or patches to add support.
The chart repository also includes a deprecated prefect-orion chart, which no longer receives updates. Please upgrade to prefect-server at your earliest convenience. We will remove all published versions of prefect-server from our Helm repository, on or after May 31st, 2023.
If you are using the subchart deployed database with persistence enabled, it is likely the password for the user has persisted between deployments in the PVC for the database but the secret has been regenerated by the Helm chart and does not match. Deploy and set the 'postgresql.auth.existingSecret' option or set a constant password at postgresql.auth.password.
Contributions to the Prefect Helm Charts are always welcome! We welcome your help - whether it's adding new functionality, tweaking documentation, or anything in between.
Please make sure that your changes have been linted & the chart documentation has been updated. The easiest way to accomplish this is by installing pre-commit.
Make sure that any new functionality is well tested! You can do this by installing the chart locally, see above for how to do this.
A helpful PR explains WHAT changed and WHY the change is important. Please take time to make your PR descriptions as helpful as possible. If you are opening a PR from a forked repository - please follow these docs to allow prefect-helm maintainers to push commits to your local branch.