Skip to content
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

Fix self hosted cloud image pull error for plugin db updater Job #2026

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions k8s/cloud/public/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ images:
- name: cloud-vzmgr_server_image
newName: gcr.io/pixie-oss/pixie-prod/cloud-vzmgr_server_image
newTag: latest
- name: cloud-plugin/load_db
newName: gcr.io/pixie-oss/pixie-prod/cloud-plugin/load_db
- name: cloud-plugin-load_db
newName: gcr.io/pixie-oss/pixie-prod/cloud-plugin-load_db
Comment on lines +49 to +50
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This reference image name and the gcr.io one didn't match the Job's manifest

ddelnano@dev-vm:~/code/pixie (ddelnano/fix-plugin-load-db-kustomization-config) $ git grep 'cloud-plugin-load_db'
k8s/cloud/dev/plugin_db_updater_job.yaml:        image: cloud-plugin-load_db:latest
k8s/cloud/overlays/plugin_job/plugin_job.yaml:        image: cloud-plugin-load_db:latest

newTag: latest
Loading