This is the offical Helm chart for deploying the 1Password SCIM bridge.
The chart exists to facilitate our one-click deployment options for the Google Cloud Marketplace and DigitalOcean Marketplace applications. With this in mind the chart is tailored to our specific use case and will likely not meet the requirements of every configuration option or deployment scenario. For more general purpose deployment options please see our 1Password/scim-examples repository.
Install the latest version of Helm. See installing Helm from the official Helm documentation.
helm repo add 1password https://1password.github.io/op-scim-helm
helm repo update
helm install my-release 1password/op-scim-bridge
helm uninstall my-release
The default resource recommendations for the SCIM bridge and Redis deployments are acceptable in most scenarios, but they fall short in high volume deployments where there is a large number of users and/or groups.
We strongly recommend increasing both the SCIM bridge and Redis deployments.
Our current default resource requirements for the SCIM bridge (defined in values.yaml) and Redis (defined in values.yaml) are:
Expected Provisioned Users | Resources |
---|---|
1-1000 | Default |
1000-5000 | High Volume Deployment |
5000+ | Very High Volume Deployment |
Default
requests:
cpu: 125m
memory: 256M
limits:
cpu: 250m
memory: 512M
Note that these are the recommended requests
and limits
values for both the SCIM bridge and Redis containers. These values can be scaled down again to the default values after the initial large provisioning event.
High Volume Deployment
requests:
cpu: 500m
memory: 512M
limits:
cpu: 1000m
memory: 1024M
Very High Volume Deployment
requests:
cpu: 1000m
memory: 1024M
limits:
cpu: 2000m
memory: 2048M
Updating the default values is a two-step process:
- Create a new file named
override.yaml
in the root directory of theop-scim-helm
project, and copy the below content in this new file. We have provided the proposed recommendations for you.
# SCIM configuration options
scim:
# resource sets the requests and/or limits for the SCIM bridge pod
resources:
requests:
cpu: 500m
memory: 512M
limits:
cpu: 1000m
memory: 1024M
# Redis configuration options
redis:
# resource sets the requests and/or limits for the Redis pod
requests:
cpu: 500m
memory: 512M
limits:
cpu: 1000m
memory: 1024M
- Upgrade the
op-scim-bridge
chart with the updatedoverride.yaml
values:
helm upgrade -f override.yaml op-scim-bridge 1password/op-scim-bridge
If successful, you should see the message Release "op-scim-bridge" has been upgraded. Happy Helming!
You can verify the changes by describing the deployment with kubectl
and referencing the Limits and Requests sections of the op-scim-bridge
container:
kubectl describe deploy op-scim-bridge
For further understanding of how Kubernetes measures resources, please see Resource units in Kubernetes
Please reach out to our support team if you need help with the configuration or to tweak the values for your deployment.