{"id":23872327,"url":"https://github.com/markandersontrocme/demo-imageconfig","last_synced_at":"2026-03-01T10:34:44.969Z","repository":{"id":262109844,"uuid":"885468079","full_name":"markandersontrocme/demo-imageconfig","owner":"markandersontrocme","description":"Kubecon demo of Crossplane ImageConfig","archived":false,"fork":false,"pushed_at":"2024-11-14T20:32:37.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-22T19:42:01.957Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/markandersontrocme.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-08T16:35:29.000Z","updated_at":"2024-11-14T20:32:40.000Z","dependencies_parsed_at":"2024-11-10T16:24:30.874Z","dependency_job_id":"3d940c81-c26f-4495-95fe-490e3fea0e60","html_url":"https://github.com/markandersontrocme/demo-imageconfig","commit_stats":null,"previous_names":["markandersontrocme/demo-imageconfig"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/markandersontrocme/demo-imageconfig","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markandersontrocme%2Fdemo-imageconfig","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markandersontrocme%2Fdemo-imageconfig/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markandersontrocme%2Fdemo-imageconfig/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markandersontrocme%2Fdemo-imageconfig/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/markandersontrocme","download_url":"https://codeload.github.com/markandersontrocme/demo-imageconfig/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/markandersontrocme%2Fdemo-imageconfig/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29966861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T09:33:09.965Z","status":"ssl_error","status_checked_at":"2026-03-01T09:25:48.915Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-03T15:50:05.547Z","updated_at":"2026-03-01T10:34:44.949Z","avatar_url":"https://github.com/markandersontrocme.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Demo: Crossplane ImageConfig\n\n## Pre-Requisites\n\nCreate a Kubernetes cluster, e.g. with `kind`:\n\n```sh\nhelm repo add crossplane-stable https://charts.crossplane.io/stable\nhelm repo update\nhelm install crossplane --namespace crossplane-system --create-namespace crossplane-stable/crossplane --set 'args={--enable-dependency-version-upgrades,--enable-signature-verification}'\n```\n\n## Pre\n\n### Create secrets to pull private packages\n\n```sh\nkubectl -n crossplane-system create secret docker-registry upbound-platform-packages --docker-server=xpkg.upbound.io --docker-username=${REGISTRY_USR_PLAT} --docker-password=${REGISTRY_PW_PLAT}\n```\n\n### Install private package with private dependencies\n\n```sh\nkubectl apply -f pre/configuration-0.5.0.yaml\n```\n\n#### Things don't work\n\n```sh\nkubectl get configuration\n```\n\n\u003e Even though we have a `packagePullSecret` it is not being used on the\ndependencies...\n\n## Post\n\n### Install an ImageConfig\n\n```sh\nkubectl apply -f post/imageconfig.yaml\n```\n\n#### Yay it works\n\n```sh\nkubectl get configuration\n```\n\n### But wait there's more\n\nLet's do image verification\n\n#### Create secrets to pull other private packages\n\n```sh\nkubectl -n crossplane-system create secret docker-registry upbound-packages --docker-server=xpkg.upbound.io --docker-username=${REGISTRY_USR_LTS} --docker-password=${REGISTRY_PW_LTS}\n```\n\n#### Install an ImageConfig with verification\n\n```sh\nkubectl apply -f post/imageconfig-verification.yaml\n```\n\n#### Install a private provider\n\n```sh\nkubectl apply -f post/provider-s3.yaml\n```\n\n#### Check the image verification\n\n```sh\nkubectl get providerrevision -l pkg.crossplane.io/package=provider-aws-s3 -ojson | jq '.items[].status.conditions'\n```\n\n```yaml\n- lastTransitionTime: \"2024-11-07T04:17:52Z\"\n  message: Signature verification succeeded using ImageConfig named \"upbound-packages\"\n  reason: SignatureVerificationSucceeded\n  status: \"True\"\n  type: Verified\n```\n\n### But wait there's more\n\nLet's upgrade dependencies\n\n```sh\nkubectl apply -f post/configuration-0.6.0.yaml\n```\n\n```sh\nkubectl get configuration\n```\n\n## Cleanup\n\n```sh\nkubectl delete configuration,provider,imageconfig --all \u0026\u0026 kubectl delete secrets upbound-platform-packages upbound-packages -n crossplane-system\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkandersontrocme%2Fdemo-imageconfig","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarkandersontrocme%2Fdemo-imageconfig","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarkandersontrocme%2Fdemo-imageconfig/lists"}