Conversation
Signed-off-by: Bastian Echterhölter <bastian.echterhoelter@sap.com> On-behalf-of: @SAP <bastian.echterhoelter@sap.com>
|
Reproduced this locally. |
|
Copying in from the issue: Finally figured this out after talking a bit more with Bastian and it became obvious to me that the image is set up such that old OCM was using some guess work to figure out that it was a docker repo. The original opnefga was reconciled from https://hub.docker.com/layers/openfga/openfga/v1.11.2/images/sha256-dca767f21cbdf72fd7a8ec91b040c1844a4c2c4976d854e25e6c7204ac8f7f9c. And that's what's supposed to happen. So the "fix" is basically just making this imageReference here: resource:
access:
imageReference: openfga/openfga:v1.11.2explicit: resource:
access:
imageReference: docker.io/openfga/openfga:v1.11.2Also, optionally, if you would like to use the latest version of the controller, we switch the helm chart. So change apiVersion: source.toolkit.fluxcd.io/v1
kind: GitRepository
metadata:
name: ocm-k8s-toolkit
namespace: default
spec:
interval: 1m
url: https://github.com/open-component-model/open-component-model
ref:
commit: 2a57af1b9a829f8d563113fcc157e4afeb53561e
---
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: ocm-k8s-toolkit
namespace: default
spec:
interval: 1m
targetNamespace: ocm-system
chart:
spec:
chart: ./kubernetes/controller/chart
sourceRef:
kind: GitRepository
name: ocm-k8s-toolkit
values:
manager:
image:
repository: ghcr.io/open-component-model/kubernetes/controller
tag: "0.0.0-2a57af1"
concurrency:
resource: 21
logging:
level: "debug"
healthProbe:
bindAddress: ":8081"And the version is |
No description provided.