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

Can't install Camel-K operator using a maven caSecrets settings. #6060

Open
mss55 opened this issue Jan 31, 2025 · 1 comment
Open

Can't install Camel-K operator using a maven caSecrets settings. #6060

mss55 opened this issue Jan 31, 2025 · 1 comment
Labels
kind/bug Something isn't working

Comments

@mss55
Copy link

mss55 commented Jan 31, 2025

What happened?

During operator installation, an error occurs when using custom maven caCerts.
IntegrationPlatform and CamelCatalog go into the Ready state. but Kamelets are not created.

Same errors occurs during integration build.
We are using custom JDK base image patched with custom certs and looks like the required cert is imported from /opt/java/openjdk/lib/security/cacerts rather than caSecrets.

Related to #6030

Steps to reproduce

  1. Create secret kubectl create secret generic maven-ca-certs --from-file=cert.crt=./cert.crt -n camel26
  2. Check created secret
$kubectl describe secret maven-ca-certs -n camel26
Name:         maven-ca-certs
Namespace:    camel26
Labels:       <none>
Annotations:  <none>

Type:  Opaque

Data
====
cert.crt:  1838 bytes
  1. Install operator
  2. Create IntegrationPlatform like this
apiVersion: camel.apache.org/v1
kind: IntegrationPlatform
metadata:
  annotations:                           
    camel.apache.org/operator.id: camel-k
  labels:
    app: camel-k
  name: camel-k
spec:
  build:
    baseImage: artifactory/jvm-release-docker/temurin/temurin17-jdk:17.0.13_11-debian-upd1
    maven:
      caSecrets:
      - key: cert.crt
        name: maven-ca-certs
      settings:
        configMapKeyRef:
          key: settings.xml
          name: maven-settings

Relevant log output

{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.controller.build","msg":"State transition","request-namespace":"camel26","request-name":"kit-cudp77s8i41c73f38dl0","api-version":"camel.apache.org/v1","kind":"Build","ns":"camel26","name":"kit-cudp77s8i41c73f38dl0","phase-from":"Pending","phase-to":"Running"}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.builder","msg":"running builder task builder in context directory: /tmp/kit-cudp77s8i41c73f38dl0-2026021853"}
{"level":"error","ts":"2025-01-30T14:58:39Z","logger":"camel-k.keytool","msg":"Executed command: /opt/java/openjdk/bin/keytool -importcert -noprompt -alias maven-0 -storepass XAiYcjFeob -keystore trust.jks","stacktrace":"github.com/apache/camel-k/v2/pkg/util/log.Logger.Error\n\tgithub.com/apache/camel-k/v2/pkg/util/log/log.go:80\ngithub.com/apache/camel-k/v2/pkg/util/jvm.init.func2\n\tgithub.com/apache/camel-k/v2/pkg/util/jvm/keystore.go:41\ngithub.com/apache/camel-k/v2/pkg/util.RunAndLog\n\tgithub.com/apache/camel-k/v2/pkg/util/command.go:35\ngithub.com/apache/camel-k/v2/pkg/util/jvm.GenerateKeystore\n\tgithub.com/apache/camel-k/v2/pkg/util/jvm/keystore.go:52\ngithub.com/apache/camel-k/v2/pkg/builder.generateJavaKeystore\n\tgithub.com/apache/camel-k/v2/pkg/builder/project.go:98\ngithub.com/apache/camel-k/v2/pkg/builder.(*builderStep).execute\n\tgithub.com/apache/camel-k/v2/pkg/builder/steps.go:46\ngithub.com/apache/camel-k/v2/pkg/builder.(*builderTask).Do\n\tgithub.com/apache/camel-k/v2/pkg/builder/builder.go:101\ngithub.com/apache/camel-k/v2/pkg/controller/build.(*monitorRoutineAction).runBuild\n\tgithub.com/apache/camel-k/v2/pkg/controller/build/monitor_routine.go:168"}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.controller.integrationkit","msg":"State transition","request-namespace":"camel26","request-name":"kit-cudp77s8i41c73f38dl0","api-version":"camel.apache.org/v1","kind":"IntegrationKit","ns":"camel26","name":"kit-cudp77s8i41c73f38dl0","phase-from":"Build Submitted","phase-to":"Build Running"}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.controller.integrationkit","msg":"Invoking action build","request-namespace":"camel26","request-name":"kit-cudp77s8i41c73f38dl0","api-version":"camel.apache.org/v1","kind":"IntegrationKit","ns":"camel26","name":"kit-cudp77s8i41c73f38dl0"}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.controller.integrationkit","msg":"Build running","request-namespace":"camel26","request-name":"kit-cudp77s8i41c73f38dl0","api-version":"camel.apache.org/v1","kind":"IntegrationKit","ns":"camel26","name":"kit-cudp77s8i41c73f38dl0"}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.keytool","msg":"Certificate was added to keystore"}
{"level":"error","ts":"2025-01-30T14:58:39Z","logger":"camel-k.keytool","msg":"Executed command: /opt/java/openjdk/bin/keytool -importkeystore -noprompt -srckeystore /opt/java/openjdk/lib/security/cacerts -srcstorepass changeit -destkeystore trust.jks -deststorepass XAiYcjFeob","stacktrace":"github.com/apache/camel-k/v2/pkg/util/log.Logger.Error\n\tgithub.com/apache/camel-k/v2/pkg/util/log/log.go:80\ngithub.com/apache/camel-k/v2/pkg/util/jvm.init.func2\n\tgithub.com/apache/camel-k/v2/pkg/util/jvm/keystore.go:41\ngithub.com/apache/camel-k/v2/pkg/util.RunAndLog\n\tgithub.com/apache/camel-k/v2/pkg/util/command.go:35\ngithub.com/apache/camel-k/v2/pkg/util/jvm.GenerateKeystore\n\tgithub.com/apache/camel-k/v2/pkg/util/jvm/keystore.go:69\ngithub.com/apache/camel-k/v2/pkg/builder.generateJavaKeystore\n\tgithub.com/apache/camel-k/v2/pkg/builder/project.go:98\ngithub.com/apache/camel-k/v2/pkg/builder.(*builderStep).execute\n\tgithub.com/apache/camel-k/v2/pkg/builder/steps.go:46\ngithub.com/apache/camel-k/v2/pkg/builder.(*builderTask).Do\n\tgithub.com/apache/camel-k/v2/pkg/builder/builder.go:101\ngithub.com/apache/camel-k/v2/pkg/controller/build.(*monitorRoutineAction).runBuild\n\tgithub.com/apache/camel-k/v2/pkg/controller/build/monitor_routine.go:168"}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.keytool","msg":"Importing keystore /opt/java/openjdk/lib/security/cacerts to trust.jks..."}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.keytool","msg":"Importing keystore /opt/java/openjdk/lib/security/cacerts to trust.jks..."}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.keytool","msg":"Entry for alias cn_digicert_assured_id_root_g2,ou_wwwdigicertcom,o_digicert_inc,c_us [jdk] successfully imported."}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.keytool","msg":"Entry for alias cn_cfca_ev_root,o_china_financial_certification_authority,c_cn [jdk] successfully imported."}
{"level":"info","ts":"2025-01-30T14:58:39Z","logger":"camel-k.keytool","msg":"Entry for alias cn_hipki_root_ca__g1,o_chunghwa_telecom_co__ltd,c_tw [jdk] successfully imported."}

.... MANY STRING LIKE THIS

"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.keytool","msg":"Entry for alias cn_sslcom_root_certification_authority_ecc,o_ssl_corporation,l_houston,st_texas,c_us [jdk] successfully imported."}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.keytool","msg":"Import command completed:  152 entries successfully imported, 0 entries failed or cancelled"}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.keytool","msg":""}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.keytool","msg":"Warning:"}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.keytool","msg":"<cn_swisssign_silver_ca__g2,o_swisssign_ag,c_ch [jdk]> uses the SHA1withRSA signature algorithm which is considered a security risk. This algorithm will be disabled in a future update."}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.keytool","msg":"<cn_twca_root_certification_authority,ou_root_ca,o_taiwanca,c_tw [jdk]> uses the SHA1withRSA signature algorithm which is considered a security risk. This algorithm will be disabled in a future update."}

.... MANY STRING LIKE THIS

{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.keytool","msg":"<cn_aaa_certificate_services,o_comodo_ca_limited,l_salford,st_greater_manchester,c_gb [jdk]> uses the SHA1withRSA signature algorithm which is considered a security risk. This algorithm will be disabled in a future update."}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.keytool","msg":"<cn_quovadis_root_ca_3,o_quovadis_limited,c_bm [jdk]> uses the SHA1withRSA signature algorithm which is considered a security risk. This algorithm will be disabled in a future update."}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.maven.build","msg":"Executed command: /usr/bin/cp --recursive /usr/share/maven/mvnw/. ."}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.maven","msg":"executing: ./mvnw -V --no-transfer-progress -Dstyle.color=never package -Dmaven.test.skip=true -Dmaven.repo.local=/etc/maven/m2 --global-settings /tmp/kit-cudp77s8i41c73f38dl0-2026021853/maven/settings.xml --settings /tmp/kit-cudp77s8i41c73f38dl0-2026021853/maven/user-settings.xml","MAVEN_OPTS":"-Djavax.net.ssl.trustStore=/tmp/kit-cudp77s8i41c73f38dl0-2026021853/trust.jks -Djavax.net.ssl.trustStorePassword=XAiYcjFeob"}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.maven.build","msg":"Executed command: ./mvnw -V --no-transfer-progress -Dstyle.color=never package -Dmaven.test.skip=true -Dmaven.repo.local=/etc/maven/m2 --global-settings /tmp/kit-cudp77s8i41c73f38dl0-2026021853/maven/settings.xml --settings /tmp/kit-cudp77s8i41c73f38dl0-2026021853/maven/user-settings.xml"}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.maven.build","msg":"Apache Maven 3.8.6 (84538c9988a25aec085021c365c560670ad80f63)"}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.maven.build","msg":"Maven home: /usr/share/maven/wrapper/dists/apache-maven-3.8.6-bin/5f1464e3/apache-maven-3.8.6"}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.maven.build","msg":"Java version: 17.0.13, vendor: Eclipse Adoptium, runtime: /opt/java/openjdk"}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.maven.build","msg":"Default locale: en_US, platform encoding: UTF-8"}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.maven.build","msg":"OS name: \"linux\", version: \"6.1.77-flatcar\", arch: \"amd64\", family: \"unix\""}
{"level":"info","ts":"2025-01-30T14:58:40Z","logger":"camel-k.maven.build","msg":"Scanning for projects..."}
{"level":"info","ts":"2025-01-30T14:58:41Z","logger":"camel-k.maven.build","msg":""}
{"level":"info","ts":"2025-01-30T14:58:41Z","logger":"camel-k.maven.build","msg":"---------< org.apache.camel.k.integration:camel-k-integration >---------"}
{"level":"info","ts":"2025-01-30T14:58:41Z","logger":"camel-k.maven.build","msg":"Building camel-k-integration 2.6.0-nightly"}
{"level":"info","ts":"2025-01-30T14:58:41Z","logger":"camel-k.maven.build","msg":"--------------------------------[ jar ]---------------------------------"}
{"level":"info","ts":"2025-01-30T15:00:24Z","logger":"camel-k.maven.build","msg":""}
{"level":"info","ts":"2025-01-30T15:00:24Z","logger":"camel-k.maven.build","msg":"--- maven-resources-plugin:2.6:resources (default-resources) @ camel-k-integration ---"}
{"level":"info","ts":"2025-01-30T15:00:27Z","logger":"camel-k.maven.build","msg":"Using 'UTF-8' encoding to copy filtered resources."}
{"level":"info","ts":"2025-01-30T15:00:27Z","logger":"camel-k.maven.build","msg":"Copying 1 resource"}
{"level":"info","ts":"2025-01-30T15:00:27Z","logger":"camel-k.maven.build","msg":""}
{"level":"info","ts":"2025-01-30T15:00:27Z","logger":"camel-k.maven.build","msg":"--- maven-compiler-plugin:3.1:compile (default-compile) @ camel-k-integration ---"}
{"level":"info","ts":"2025-01-30T15:00:32Z","logger":"camel-k.maven.build","msg":"No sources to compile"}
{"level":"info","ts":"2025-01-30T15:00:32Z","logger":"camel-k.maven.build","msg":""}
{"level":"info","ts":"2025-01-30T15:00:32Z","logger":"camel-k.maven.build","msg":"--- maven-resources-plugin:2.6:testResources (default-testResources) @ camel-k-integration ---"}
{"level":"info","ts":"2025-01-30T15:00:32Z","logger":"camel-k.maven.build","msg":"Not copying test resources"}
{"level":"info","ts":"2025-01-30T15:00:32Z","logger":"camel-k.maven.build","msg":""}
{"level":"info","ts":"2025-01-30T15:00:32Z","logger":"camel-k.maven.build","msg":"--- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ camel-k-integration ---"}
{"level":"info","ts":"2025-01-30T15:00:32Z","logger":"camel-k.maven.build","msg":"Not compiling test sources"}
{"level":"info","ts":"2025-01-30T15:00:32Z","logger":"camel-k.maven.build","msg":""}
{"level":"info","ts":"2025-01-30T15:00:32Z","logger":"camel-k.maven.build","msg":"--- maven-surefire-plugin:2.12.4:test (default-test) @ camel-k-integration ---"}
{"level":"info","ts":"2025-01-30T15:00:33Z","logger":"camel-k.maven.build","msg":"Tests are skipped."}
{"level":"info","ts":"2025-01-30T15:00:33Z","logger":"camel-k.maven.build","msg":""}
{"level":"info","ts":"2025-01-30T15:00:33Z","logger":"camel-k.maven.build","msg":"--- maven-jar-plugin:2.4:jar (default-jar) @ camel-k-integration ---"}
{"level":"info","ts":"2025-01-30T15:00:33Z","logger":"camel-k.maven.build","msg":"Building jar: /tmp/kit-cudp77s8i41c73f38dl0-2026021853/maven/target/camel-k-integration-2.6.0-nightly.jar"}
{"level":"info","ts":"2025-01-30T15:00:33Z","logger":"camel-k.maven.build","msg":""}
{"level":"info","ts":"2025-01-30T15:00:33Z","logger":"camel-k.maven.build","msg":"--- quarkus-maven-plugin:3.15.1:build (build-integration) @ camel-k-integration ---"}
{"level":"info","ts":"2025-01-30T15:00:52Z","logger":"camel-k.maven.build","msg":"[io.quarkus.arc.deployment.SplitPackageProcessor] Detected a split package usage which is considered a bad practice and should be avoided. Following packages were detected in multiple archives: "}
{"level":"info","ts":"2025-01-30T15:00:52Z","logger":"camel-k.maven.build","msg":"- \"org.apache.camel.spring\" found in [org.apache.camel:camel-spring-main:4.8.3, org.apache.camel:camel-spring:4.8.3]"}
{"level":"info","ts":"2025-01-30T15:00:53Z","logger":"camel-k.maven.build","msg":"[io.quarkus.deployment.QuarkusAugmentor] Quarkus augmentation completed in 2587ms"}
{"level":"info","ts":"2025-01-30T15:00:53Z","logger":"camel-k.maven.build","msg":"------------------------------------------------------------------------"}
{"level":"info","ts":"2025-01-30T15:00:53Z","logger":"camel-k.maven.build","msg":"BUILD SUCCESS"}
{"level":"info","ts":"2025-01-30T15:00:53Z","logger":"camel-k.maven.build","msg":"------------------------------------------------------------------------"}
{"level":"info","ts":"2025-01-30T15:00:53Z","logger":"camel-k.maven.build","msg":"Total time:  02:12 min"}
{"level":"info","ts":"2025-01-30T15:00:53Z","logger":"camel-k.maven.build","msg":"Finished at: 2025-01-30T15:00:53Z"}
{"level":"info","ts":"2025-01-30T15:00:53Z","logger":"camel-k.maven.build","msg":"------------------------------------------------------------------------"}
{"level":"info","ts":"2025-01-30T15:00:53Z","logger":"camel-k.builder","msg":"running builder task package in context directory: /tmp/kit-cudp77s8i41c73f38dl0-2026021853"}
{"level":"info","ts":"2025-01-30T15:00:53Z","logger":"camel-k","msg":"Running spectrum task in context directory: /tmp/kit-cudp77s8i41c73f38dl0-2026021853/context"}

Camel K version

v2.6.0-nightly; v2.5.0

@mss55 mss55 added the kind/bug Something isn't working label Jan 31, 2025
@mss55
Copy link
Author

mss55 commented Jan 31, 2025

CamelCatalog build logs:

{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k","msg":"ImagePlatforms set to []"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k","msg":"LocalRepository set to /etc/maven/m2"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k","msg":"Timeout set to {5m0s}"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k","msg":"Maven Timeout set to 5m0s"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k.controller.integrationplatform","msg":"State transition","request-namespace":"camel26","request-name":"camel-k","api-version":"camel.apache.org/v1","kind":"IntegrationPlatform","ns":"camel26","name":"camel-k","phase-from":"","phase-to":"Creating"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k.controller.integrationplatform","msg":"Invoking action create","request-namespace":"camel26","request-name":"camel-k","api-version":"camel.apache.org/v1","kind":"IntegrationPlatform","ns":"camel26","name":"camel-k"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k.controller.integrationplatform","msg":"Installing bundled camel catalog: 3.15.0","request-namespace":"camel26","request-name":"camel-k","api-version":"camel.apache.org/v1","kind":"IntegrationPlatform","ns":"camel26","name":"camel-k"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k.controller.integrationplatform","msg":"IntegrationPlatform is about to install Apache Kamelet Catalog version 4.8.0","request-namespace":"camel26","request-name":"camel-k","api-version":"camel.apache.org/v1","kind":"IntegrationPlatform","ns":"camel26","name":"camel-k"}
{"level":"error","ts":"2025-01-29T16:51:30Z","logger":"camel-k.keytool","msg":"Executed command: /opt/java/openjdk/bin/keytool -importcert -noprompt -alias maven-0 -storepass IxuKYMYtxY -keystore trust.jks","stacktrace":"github.com/apache/camel-k/v2/pkg/util/log.Logger.Error\n\tgithub.com/apache/camel-k/v2/pkg/util/log/log.go:80\ngithub.com/apache/camel-k/v2/pkg/util/jvm.init.func2\n\tgithub.com/apache/camel-k/v2/pkg/util/jvm/keystore.go:41\ngithub.com/apache/camel-k/v2/pkg/util.RunAndLog\n\tgithub.com/apache/camel-k/v2/pkg/util/command.go:35\ngithub.com/apache/camel-k/v2/pkg/util/jvm.GenerateKeystore\n\tgithub.com/apache/camel-k/v2/pkg/util/jvm/keystore.go:52\ngithub.com/apache/camel-k/v2/pkg/controller/integrationplatform.downloadKameletDependency\n\tgithub.com/apache/camel-k/v2/pkg/controller/integrationplatform/kamelets.go:140\ngithub.com/apache/camel-k/v2/pkg/controller/integrationplatform.installKameletCatalog\n\tgithub.com/apache/camel-k/v2/pkg/controller/integrationplatform/kamelets.go:66\ngithub.com/apache/camel-k/v2/pkg/controller/integrationplatform.installKamelets\n\tgithub.com/apache/camel-k/v2/pkg/controller/integrationplatform/create.go:168\ngithub.com/apache/camel-k/v2/pkg/controller/integrationplatform.(*createAction).Handle\n\tgithub.com/apache/camel-k/v2/pkg/controller/integrationplatform/create.go:83\ngithub.com/apache/camel-k/v2/pkg/controller/integrationplatform.(*reconcileIntegrationPlatform).Reconcile\n\tgithub.com/apache/camel-k/v2/pkg/controller/integrationplatform/integrationplatform_controller.go:175\ngithub.com/apache/camel-k/v2/pkg/util/monitoring.(*instrumentedReconciler).Reconcile\n\tgithub.com/apache/camel-k/v2/pkg/util/monitoring/controller.go:70\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Reconcile\n\tsigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:114\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler\n\tsigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:311\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem\n\tsigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:261\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2\n\tsigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:222"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k.controller.catalog","msg":"Invoking action initialize","request-namespace":"camel26","request-name":"camel-catalog-3.15.0","api-version":"camel.apache.org/v1","kind":"CamelCatalog","ns":"camel26","name":"camel-catalog-3.15.0"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k.controller.catalog","msg":"Initializing CamelCatalog","request-namespace":"camel26","request-name":"camel-catalog-3.15.0","api-version":"camel.apache.org/v1","kind":"CamelCatalog","ns":"camel26","name":"camel-catalog-3.15.0"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k.controller.integrationplatform","msg":"State transition","request-namespace":"camel26","request-name":"camel-k","api-version":"camel.apache.org/v1","kind":"IntegrationPlatform","ns":"camel26","name":"camel-k","phase-from":"Creating","phase-to":"Ready"}
{"level":"info","ts":"2025-01-29T16:51:30Z","logger":"camel-k.controller.integrationplatform","msg":"Invoking action monitor","request-namespace":"camel26","request-name":"camel-k","api-version":"camel.apache.org/v1","kind":"IntegrationPlatform","ns":"camel26","name":"camel-k"}
{"level":"info","ts":"2025-01-29T16:51:31Z","logger":"camel-k.controller.catalog","msg":"Invoking action initialize","request-namespace":"camel26","request-name":"camel-catalog-quarkus-3.15.0","api-version":"camel.apache.org/v1","kind":"CamelCatalog","ns":"camel26","name":"camel-catalog-quarkus-3.15.0"}
{"level":"info","ts":"2025-01-29T16:51:31Z","logger":"camel-k.controller.catalog","msg":"Initializing CamelCatalog","request-namespace":"camel26","request-name":"camel-catalog-quarkus-3.15.0","api-version":"camel.apache.org/v1","kind":"CamelCatalog","ns":"camel26","name":"camel-catalog-quarkus-3.15.0"}
{"level":"info","ts":"2025-01-29T16:51:31Z","logger":"camel-k.controller.catalog","msg":"State transition","request-namespace":"camel26","request-name":"camel-catalog-quarkus-3.15.0","api-version":"camel.apache.org/v1","kind":"CamelCatalog","ns":"camel26","name":"camel-catalog-quarkus-3.15.0","phase-from":"","phase-to":"Ready"}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant