Dex-backed Pipery Auth#
pipery-auth is now a Dex-backed OIDC service. Dex is the shared issuer for Pipery services:
https://auth.pipery.dev/dexDex brokers identity through GitHub, GitLab, and Bitbucket Cloud connectors and exposes static OIDC clients for:
pipery-dashboardpipery-workflow-genpipery-release-botpipery-deploy-bot
Runtime Secrets#
OAuth client IDs and secrets should be runtime secrets, not baked into public values files.
Expected Kubernetes secrets:
pipery-dex-connectors:
github-client-id
github-client-secret
gitlab-client-id
gitlab-client-secret
bitbucket-client-id
bitbucket-client-secret
pipery-dex-clients:
dashboard-client-secret
workflow-gen-client-secret
release-bot-client-secret
deploy-bot-client-secretUse Helm values for non-sensitive settings such as hostnames, redirect URLs, namespaces, and issuer URLs.
Bots#
The bots can validate Dex bearer tokens when configured:
PIPERY_DEX_ISSUER=https://auth.pipery.dev/dex
PIPERY_RELEASE_DEX_CLIENT_ID=pipery-release-bot
PIPERY_DEPLOY_DEX_CLIENT_ID=pipery-deploy-botStatic API token environment variables still work for workflow-triggered automation:
PIPERY_RELEASE_API_TOKEN=...
PIPERY_DEPLOY_API_TOKEN=...Dashboard and Workflow Generator#
Dashboard and workflow-gen sign in directly with GitHub, GitLab, or Bitbucket Cloud because they need provider API tokens for repository operations. Dex still owns the central issuer and client registration pattern for OIDC-only flows.