Update deprecated ghcr.io image reference to public.ecr.aws - #62
Update deprecated ghcr.io image reference to public.ecr.aws#62luisina-santos wants to merge 1 commit into
Conversation
README.md referenced this connector's image via ghcr.io/conductorone; container images are now published to public.ecr.aws/conductorone instead. Only this connector's own image reference was updated. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
|
|
||
| ``` | ||
| docker run --rm -v $(pwd):/out -e BATON_ACCOUNT_ID=account_id BATON_DATABRICKS_CLIENT_ID=client_id BATON_DATABRICKS_CLIENT_SECRET=client_secret ghcr.io/conductorone/baton-databricks:latest -f "/out/sync.c1z" | ||
| docker run --rm -v $(pwd):/out -e BATON_ACCOUNT_ID=account_id BATON_DATABRICKS_CLIENT_ID=client_id BATON_DATABRICKS_CLIENT_SECRET=client_secret public.ecr.aws/conductorone/baton-databricks:latest -f "/out/sync.c1z" |
There was a problem hiding this comment.
🟡 Suggestion: Pre-existing on this line, but since you're touching it — only BATON_ACCOUNT_ID has an -e flag. Docker will parse BATON_DATABRICKS_CLIENT_ID=client_id as the image name, so this command fails as written. Each variable needs its own -e.
| docker run --rm -v $(pwd):/out -e BATON_ACCOUNT_ID=account_id BATON_DATABRICKS_CLIENT_ID=client_id BATON_DATABRICKS_CLIENT_SECRET=client_secret public.ecr.aws/conductorone/baton-databricks:latest -f "/out/sync.c1z" | |
| docker run --rm -v $(pwd):/out -e BATON_ACCOUNT_ID=account_id -e BATON_DATABRICKS_CLIENT_ID=client_id -e BATON_DATABRICKS_CLIENT_SECRET=client_secret public.ecr.aws/conductorone/baton-databricks:latest -f "/out/sync.c1z" |
Connector PR Review: Update deprecated ghcr.io image reference to public.ecr.awsBlocking Issues: 0 | Suggestions: 2 | Threads Resolved: 0 Review SummaryThe full PR diff was scanned for security and correctness: it is a single-line README documentation change swapping the connector's own image from Security IssuesNone found. Correctness IssuesNone found. Suggestions
Prompt for AI agents |
Summary
ghcr.io/conductorone/baton-databricks:latest; container images are now published topublic.ecr.aws/conductorone/baton-databricks:latestinstead.Test plan
public.ecr.aws/conductorone/baton-databricks:latestresolves (manifest exists) before opening this PR.🤖 Generated with Claude Code