├── .asf.yaml ├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── actions │ ├── automatic-updates │ │ └── action.yml │ ├── build │ │ └── action.yml │ ├── infra-setting │ │ └── action.yml │ ├── install-otlp-collector │ │ └── action.yml │ └── release-nightly │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── comment-pr.yaml │ ├── common.yml │ ├── install.yml │ ├── kafka.yml │ ├── knative.yml │ ├── native.yml │ ├── nightly-automatic-updates.yml │ ├── nightly-install-olm.yml │ ├── nightly-latest-runtime.yml │ ├── nightly-multi.yml │ ├── nightly-quarkus-plain-runtime.yml │ ├── nightly-release.yml │ ├── security.yaml │ ├── stale.yaml │ ├── telemetry.yml │ └── validate.yml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── .pre-commit-config.yaml ├── KEYS ├── LICENSE ├── Makefile ├── NOTICE ├── PROJECT ├── README.adoc ├── cmd ├── kamel │ └── main.go └── util │ ├── doc-gen │ ├── generators │ │ ├── generators.go │ │ ├── traitdocgen.go │ │ └── traitmetadatagen.go │ └── main.go │ └── license-check │ └── main.go ├── docs ├── .gitignore ├── README_local_build.adoc ├── antora.yml ├── charts │ ├── camel-k-0.1.0.tgz │ ├── camel-k-0.1.1.tgz │ ├── camel-k-0.10.0.tgz │ ├── camel-k-0.10.1.tgz │ ├── camel-k-0.10.2.tgz │ ├── camel-k-0.10.3.tgz │ ├── camel-k-0.11.0.tgz │ ├── camel-k-0.11.1.tgz │ ├── camel-k-0.11.2.tgz │ ├── camel-k-0.11.3.tgz │ ├── camel-k-0.11.4.tgz │ ├── camel-k-0.12.0.tgz │ ├── camel-k-0.12.1.tgz │ ├── camel-k-0.13.0.tgz │ ├── camel-k-0.13.1.tgz │ ├── camel-k-0.2.1.tgz │ ├── camel-k-0.3.0.tgz │ ├── camel-k-0.3.1.tgz │ ├── camel-k-0.3.2.tgz │ ├── camel-k-0.4.0.tgz │ ├── camel-k-0.4.1.tgz │ ├── camel-k-0.5.1.tgz │ ├── camel-k-0.5.2.tgz │ ├── camel-k-0.6.0.tgz │ ├── camel-k-0.6.1.tgz │ ├── camel-k-0.7.0.tgz │ ├── camel-k-0.7.1.tgz │ ├── camel-k-0.8.0.tgz │ ├── camel-k-0.9.0.tgz │ ├── camel-k-0.9.1.tgz │ ├── camel-k-0.9.2.tgz │ ├── camel-k-2.0.0.tgz │ ├── camel-k-2.0.1.tgz │ ├── camel-k-2.1.0.tgz │ ├── camel-k-2.2.0.tgz │ ├── camel-k-2.3.0.tgz │ ├── camel-k-2.3.1.tgz │ ├── camel-k-2.3.2.tgz │ ├── camel-k-2.3.3.tgz │ ├── camel-k-2.4.0.tgz │ ├── camel-k-2.5.0.tgz │ ├── camel-k-2.5.1.tgz │ ├── camel-k-2.6.0.tgz │ ├── camel-k-2.7.0.tgz │ ├── camel-k-2.8.0.tgz │ └── index.yaml ├── diagrams-source │ ├── README.adoc │ ├── camel-k-operator-control-loop.drawio │ ├── camel-k-state-machine-basic.drawio │ ├── camel-k-state-machine-build.drawio │ ├── camel-k-state-machine-integration-platform.drawio │ ├── camel-k-state-machine-integration.drawio │ ├── camel-k-state-machine-integrationkit.drawio │ └── operator-control-loop.drawio ├── index.html ├── local-build.sh ├── modules │ ├── ROOT │ │ ├── attachments │ │ │ ├── schema │ │ │ │ ├── integration-schema.json │ │ │ │ └── kamelet-schema.json │ │ │ └── tekton │ │ │ │ ├── camel-k-pipeline-permissions.yaml │ │ │ │ ├── camel-k-pipeline-task-definition.yaml │ │ │ │ └── camel-k-pipeline-task-run.yaml │ │ ├── examples │ │ │ └── js │ │ │ │ └── ck.js │ │ ├── images │ │ │ ├── architecture │ │ │ │ ├── camel-k-high-level.svg │ │ │ │ ├── camel-k-network.svg │ │ │ │ ├── camel-k-operator-control-loop.png │ │ │ │ ├── camel-k-operator.jpg │ │ │ │ ├── camel-k-registry.svg │ │ │ │ ├── camel-k-runtimes.jpg │ │ │ │ ├── camel-k-sources-diagram.png │ │ │ │ ├── camel-k-state-machine-basic.png │ │ │ │ ├── camel-k-state-machine-build.png │ │ │ │ ├── camel-k-state-machine-integration-platform.png │ │ │ │ ├── camel-k-state-machine-integration.png │ │ │ │ ├── camel-k-state-machine-integrationkit.png │ │ │ │ ├── camel-k-traits.jpg │ │ │ │ ├── camel-k.jpg │ │ │ │ ├── kamelets_deployment.png │ │ │ │ └── operator-control-loop.png │ │ │ ├── camel_k_pipeline.png │ │ │ ├── concepts │ │ │ │ ├── integrations.png │ │ │ │ └── pipes.png │ │ │ ├── debugging │ │ │ │ ├── camel-k-debugger-1.png │ │ │ │ └── camel-k-debugger-2.png │ │ │ └── tekton │ │ │ │ ├── tekton-pipeline-definition.png │ │ │ │ ├── tekton-pipeline-result.png │ │ │ │ └── tekton-pipeline-run.png │ │ ├── nav.adoc │ │ ├── pages │ │ │ ├── apis │ │ │ │ └── camel-k.adoc │ │ │ ├── architecture │ │ │ │ ├── architecture.adoc │ │ │ │ ├── cr │ │ │ │ │ ├── build.adoc │ │ │ │ │ ├── camel-catalog.adoc │ │ │ │ │ ├── integration-kit.adoc │ │ │ │ │ ├── integration-platform.adoc │ │ │ │ │ └── integration.adoc │ │ │ │ ├── incremental-image.adoc │ │ │ │ ├── operator.adoc │ │ │ │ ├── runtime.adoc │ │ │ │ └── traits.adoc │ │ │ ├── concepts │ │ │ │ ├── dependencies.adoc │ │ │ │ ├── overview.adoc │ │ │ │ └── releases.adoc │ │ │ ├── configuration │ │ │ │ ├── base-image.adoc │ │ │ │ ├── build-time-properties.adoc │ │ │ │ ├── camel-properties.adoc │ │ │ │ ├── configuration.adoc │ │ │ │ ├── dependencies.adoc │ │ │ │ ├── quarkus-native.adoc │ │ │ │ ├── runtime-config.adoc │ │ │ │ ├── runtime-resources.adoc │ │ │ │ └── runtime-version.adoc │ │ │ ├── contributing │ │ │ │ ├── developers.adoc │ │ │ │ ├── e2e.adoc │ │ │ │ ├── local-development.adoc │ │ │ │ ├── local-execution.adoc │ │ │ │ └── remote-debugging.adoc │ │ │ ├── index.adoc │ │ │ ├── installation │ │ │ │ ├── advanced │ │ │ │ │ ├── advanced.adoc │ │ │ │ │ ├── build-config.adoc │ │ │ │ │ ├── http-proxy.adoc │ │ │ │ │ ├── jdk-version.adoc │ │ │ │ │ ├── maven-proxy.adoc │ │ │ │ │ ├── maven.adoc │ │ │ │ │ ├── multi.adoc │ │ │ │ │ ├── network.adoc │ │ │ │ │ ├── offline.adoc │ │ │ │ │ ├── platform-architecture.adoc │ │ │ │ │ ├── pruning-registry.adoc │ │ │ │ │ └── resources.adoc │ │ │ │ ├── installation.adoc │ │ │ │ ├── integrationplatform.adoc │ │ │ │ ├── keda.adoc │ │ │ │ ├── knative.adoc │ │ │ │ ├── platform │ │ │ │ │ ├── gke.adoc │ │ │ │ │ └── iks.adoc │ │ │ │ ├── registry │ │ │ │ │ ├── registry-secret.adoc │ │ │ │ │ ├── registry.adoc │ │ │ │ │ └── special │ │ │ │ │ │ ├── docker-desktop.adoc │ │ │ │ │ │ ├── gcr.adoc │ │ │ │ │ │ ├── github.adoc │ │ │ │ │ │ ├── icr.adoc │ │ │ │ │ │ ├── kind.adoc │ │ │ │ │ │ ├── minikube.adoc │ │ │ │ │ │ ├── openshift.adoc │ │ │ │ │ │ └── own.adoc │ │ │ │ ├── uninstalling.adoc │ │ │ │ └── upgrade.adoc │ │ │ ├── kamelets │ │ │ │ ├── architecture.adoc │ │ │ │ ├── configuration.adoc │ │ │ │ ├── distribution.adoc │ │ │ │ └── kamelets.adoc │ │ │ ├── languages │ │ │ │ ├── java.adoc │ │ │ │ ├── languages.adoc │ │ │ │ ├── xml.adoc │ │ │ │ └── yaml.adoc │ │ │ ├── observability │ │ │ │ ├── logging.adoc │ │ │ │ ├── logging │ │ │ │ │ ├── integration.adoc │ │ │ │ │ └── operator.adoc │ │ │ │ ├── monitoring.adoc │ │ │ │ └── monitoring │ │ │ │ │ ├── integration.adoc │ │ │ │ │ ├── operator-sops.adoc │ │ │ │ │ └── operator.adoc │ │ │ ├── pipeline │ │ │ │ ├── external.adoc │ │ │ │ └── pipeline.adoc │ │ │ ├── pipes │ │ │ │ ├── bind-cli.adoc │ │ │ │ ├── error-handler.adoc │ │ │ │ ├── pipes.adoc │ │ │ │ └── promoting.adoc │ │ │ ├── running │ │ │ │ ├── build-from-git.adoc │ │ │ │ ├── dry-build.adoc │ │ │ │ ├── promoting.adoc │ │ │ │ ├── running-cli.adoc │ │ │ │ ├── running.adoc │ │ │ │ ├── self-managed.adoc │ │ │ │ └── synthetic.adoc │ │ │ ├── scaling │ │ │ │ ├── integration.adoc │ │ │ │ └── pipe.adoc │ │ │ └── troubleshooting │ │ │ │ ├── debugging.adoc │ │ │ │ └── troubleshooting.adoc │ │ └── partials │ │ │ └── apis │ │ │ ├── camel-k-crds.adoc │ │ │ └── crds-html.adoc │ └── traits │ │ └── pages │ │ ├── affinity.adoc │ │ ├── builder.adoc │ │ ├── camel.adoc │ │ ├── container.adoc │ │ ├── cron.adoc │ │ ├── deployer.adoc │ │ ├── deployment.adoc │ │ ├── environment.adoc │ │ ├── health.adoc │ │ ├── ingress.adoc │ │ ├── init-containers.adoc │ │ ├── istio.adoc │ │ ├── jolokia.adoc │ │ ├── jvm.adoc │ │ ├── kamelets.adoc │ │ ├── keda.adoc │ │ ├── knative-service.adoc │ │ ├── knative.adoc │ │ ├── logging.adoc │ │ ├── master.adoc │ │ ├── mount.adoc │ │ ├── openapi.adoc │ │ ├── owner.adoc │ │ ├── pdb.adoc │ │ ├── pod.adoc │ │ ├── prometheus.adoc │ │ ├── pull-secret.adoc │ │ ├── quarkus.adoc │ │ ├── route.adoc │ │ ├── security-context.adoc │ │ ├── service.adoc │ │ ├── telemetry.adoc │ │ ├── toleration.adoc │ │ └── traits.adoc ├── source-map.yml └── source-watch.yml ├── e2e ├── README.md ├── advanced │ ├── build_max_pipelines_test.go │ ├── build_order_strategy_test.go │ ├── builder_test.go │ ├── catalog_builder_test.go │ ├── debug_test.go │ ├── dump_test.go │ ├── environment_test.go │ ├── files │ │ ├── Java.java │ │ ├── TimerCustomKameletIntegration.java │ │ ├── camel-k-tekton.yaml │ │ ├── deploy.yaml │ │ ├── example.yaml │ │ ├── promote-route-edited.yaml │ │ ├── promote-route.yaml │ │ ├── timer-kamelet-usage.yaml │ │ ├── timer-source.yaml │ │ └── yaml.yaml │ ├── incremental_build_test.go │ ├── integration_profile_test.go │ ├── kamelet_repo_test.go │ ├── maven_http_proxy_test.go │ ├── operator_id_filtering_test.go │ ├── operator_metrics_test.go │ ├── operator_restart_test.go │ ├── operator_resume_unknown_test.go │ ├── platform_traits_test.go │ ├── promote_test.go │ ├── reset_test.go │ ├── synthetic_test.go │ └── tekton_test.go ├── common │ ├── binding │ │ ├── binding_test.go │ │ ├── hello.yaml │ │ └── it-binding.yaml │ ├── cli │ │ ├── bind_test.go │ │ ├── delete_test.go │ │ ├── deploy_test.go │ │ ├── files │ │ │ ├── Java.java │ │ │ ├── JavaDuplicateParams.java │ │ │ ├── glob │ │ │ │ ├── Java1.java │ │ │ │ ├── Java2.java │ │ │ │ ├── run1.yaml │ │ │ │ └── run2.yaml │ │ │ ├── run.yaml │ │ │ └── yaml.yaml │ │ ├── help_test.go │ │ ├── log_test.go │ │ ├── promote_test.go │ │ ├── run_test.go │ │ └── version_test.go │ ├── config │ │ ├── config_reload_test.go │ │ ├── config_test.go │ │ ├── files │ │ │ ├── TimerKameletIntegrationConfiguration.java │ │ │ ├── TimerKameletIntegrationConfiguration01.java │ │ │ ├── TimerKameletIntegrationConfiguration03.java │ │ │ ├── TimerKameletIntegrationConfiguration04.java │ │ │ ├── TimerKameletIntegrationConfiguration09.java │ │ │ ├── TimerKameletIntegrationNamedConfiguration.java │ │ │ ├── TimerKameletIntegrationNamedConfiguration05.java │ │ │ ├── TimerKameletIntegrationNamedConfiguration06.java │ │ │ ├── TimerKameletIntegrationNamedConfiguration07.java │ │ │ ├── TimerKameletIntegrationNamedConfiguration08.java │ │ │ ├── build-property-file-route.yaml │ │ │ ├── build-property-route.yaml │ │ │ ├── config-configmap-properties-interpolation-route.yaml │ │ │ ├── config-configmap-properties-route.yaml │ │ │ ├── config-configmap-route.yaml │ │ │ ├── config-secret-key-route.yaml │ │ │ ├── config-secret-route.yaml │ │ │ ├── my.properties │ │ │ ├── property-file-route.yaml │ │ │ ├── property-route.yaml │ │ │ ├── quarkus.properties │ │ │ ├── resource-configmap-key-location-route.yaml │ │ │ ├── resource-configmap-location-route.yaml │ │ │ ├── resource-configmap-route.yaml │ │ │ ├── resource-secret-route.yaml │ │ │ ├── resources-data-same.txt │ │ │ ├── resources-data.txt │ │ │ ├── resources-data.zip │ │ │ ├── timer-kamelet-integration-inlined-configuration-01.yaml │ │ │ ├── timer-kamelet-integration-parameters-configuration-02.yaml │ │ │ ├── timer-kamelet-integration-parameters-configuration-03.yaml │ │ │ └── timer-kamelet-integration-parameters-configuration-04.yaml │ │ ├── kamelet_config_test.go │ │ └── pipe_config_test.go │ ├── git │ │ └── git_test.go │ ├── languages │ │ ├── files │ │ │ ├── Java.java │ │ │ ├── PolyglotJava.java │ │ │ ├── Prop.java │ │ │ ├── groovy.groovy │ │ │ ├── prop.properties │ │ │ ├── xml.xml │ │ │ ├── yaml-polyglot.yaml │ │ │ └── yaml.yaml │ │ ├── java_test.go │ │ ├── polyglot_test.go │ │ ├── xml_test.go │ │ └── yaml_test.go │ ├── misc │ │ ├── client_test.go │ │ ├── cross-ns │ │ │ ├── my-timer-source-ns.kamelet.yaml │ │ │ ├── pipe-cross-ns.yaml │ │ │ ├── sa-role.yaml │ │ │ ├── sa-rolebinding.yaml │ │ │ └── sa.yaml │ │ ├── files │ │ │ ├── BadRoute.java │ │ │ ├── InvalidJava.java │ │ │ ├── Java.java │ │ │ ├── TimerCustomKameletIntegration.java │ │ │ ├── TimerKameletIntegration.java │ │ │ ├── Unresolvable.java │ │ │ ├── kamelets │ │ │ │ └── timer-custom-source.kamelet.yaml │ │ │ ├── my-timer-source.kamelet.yaml │ │ │ ├── petstore-api.yaml │ │ │ ├── petstore.yaml │ │ │ ├── rest-consumer.yaml │ │ │ ├── rest-producer.yaml │ │ │ └── yaml.yaml │ │ ├── integration_fail_test.go │ │ ├── integration_trait_update_test.go │ │ ├── maven_repository_test.go │ │ ├── openapi_test.go │ │ ├── pipe_cross_ns_test.go │ │ ├── pipe_test.go │ │ ├── rest_test.go │ │ ├── scale_integration_test.go │ │ └── structured_logs_test.go │ ├── runtimes │ │ └── runtimes_test.go │ └── traits │ │ ├── affinity_test.go │ │ ├── builder_test.go │ │ ├── camel_test.go │ │ ├── container_test.go │ │ ├── cron_test.go │ │ ├── cross-ns │ │ ├── my-timer-source-ns.kamelet.yaml │ │ ├── sa-role.yaml │ │ ├── sa-rolebinding.yaml │ │ └── sa.yaml │ │ ├── deployment_test.go │ │ ├── files │ │ ├── .camel-jbang │ │ │ └── camel-jbang-run.properties │ │ ├── CronJava.java │ │ ├── ErroredRoute.java │ │ ├── Java.java │ │ ├── Master.java │ │ ├── NeverReady.java │ │ ├── PlatformHttpServer.java │ │ ├── PodTest.yaml │ │ ├── ServiceBinding.java │ │ ├── cron-fallback.yaml │ │ ├── cron-quartz.yaml │ │ ├── cron-tab.yaml │ │ ├── cron-timer.yaml │ │ ├── init-container.yaml │ │ ├── jvm │ │ │ ├── Classpath.java │ │ │ └── sample-1.0.jar │ │ ├── kamelet-it-main.yaml │ │ ├── kamelet-it-ns.yaml │ │ ├── kamelet-it-v1.yaml │ │ ├── my-timer-source.kamelet.yaml │ │ ├── petstore-api.yaml │ │ ├── petstore.yaml │ │ ├── template-with-supplemental-groups.yaml │ │ ├── template.yaml │ │ └── webhook.yaml │ │ ├── gc_test.go │ │ ├── health_test.go │ │ ├── init_container_test.go │ │ ├── istio_test.go │ │ ├── jolokia_test.go │ │ ├── jvm_jolokia_agent_test.go │ │ ├── jvm_test.go │ │ ├── kamelet_test.go │ │ ├── master_test.go │ │ ├── pdb_test.go │ │ ├── pod_test.go │ │ ├── prometheus_test.go │ │ ├── pull_secret_test.go │ │ ├── route_test.go │ │ ├── service_test.go │ │ └── toleration_test.go ├── install │ ├── helm │ │ ├── files │ │ │ └── yaml.yaml │ │ └── setup_test.go │ ├── kustomize │ │ ├── files │ │ │ └── yaml.yaml │ │ └── setup_test.go │ ├── olm │ │ ├── files │ │ │ └── yaml.yaml │ │ └── olm_install_test.go │ └── upgrade │ │ ├── files │ │ └── yaml.yaml │ │ └── upgrade_test.go ├── kafka │ ├── files │ │ ├── kafka-to-log.yaml │ │ ├── kafkatopic-to-log.yaml │ │ ├── keda-it-kafkatopic-to-log.yaml │ │ ├── keda-kafkatopic-to-log.yaml │ │ ├── timer-to-kafka.yaml │ │ └── timer-to-kafkatopic.yaml │ ├── kafka_autoscale_keda_test.go │ ├── kafka_binding_test.go │ └── setup │ │ ├── kafka-ephemeral.yaml │ │ ├── kafka-topic.yaml │ │ └── setup.sh ├── knative │ ├── files │ │ ├── PlatformHttpServer.java │ │ ├── flow.yaml │ │ ├── http_out.yaml │ │ ├── knative1.yaml │ │ ├── knative2.yaml │ │ ├── knative3.yaml │ │ ├── knativech1.yaml │ │ ├── knativech2.yaml │ │ ├── knativeevt1.yaml │ │ ├── knativeevt2.yaml │ │ ├── knativegetpost1.yaml │ │ ├── knativegetpost2.yaml │ │ ├── knativemultihop1.yaml │ │ ├── knativemultihop2.yaml │ │ ├── knativemultihop3.yaml │ │ ├── knativeurl1.yaml │ │ ├── knativeurl2.yaml │ │ ├── petstore-api.yaml │ │ ├── petstore-cf.yaml │ │ ├── petstore.yaml │ │ ├── podtest-knative1.yaml │ │ ├── podtest-knative2.yaml │ │ ├── setup.sh │ │ ├── template-knative.yaml │ │ ├── test-kamelet-display.yaml │ │ └── yaml.yaml │ ├── kamelet_test.go │ ├── knative_pipes_test.go │ ├── knative_platform_test.go │ ├── knative_service_test.go │ ├── openapi_test.go │ └── pod_test.go ├── native │ ├── files │ │ ├── Java.java │ │ ├── Java2.java │ │ ├── Xml.xml │ │ ├── yaml.yaml │ │ └── yaml2.yaml │ ├── native_test.go │ ├── native_test_support.go │ └── native_with_sources_test.go ├── support │ ├── csv.go │ ├── files │ │ └── nexus.yaml │ ├── gomega_support.go │ ├── regexp.go │ ├── test_support.go │ ├── test_util.go │ └── util │ │ ├── dump.go │ │ ├── log_counter.go │ │ ├── log_scanner.go │ │ ├── log_walker.go │ │ ├── structured_log.go │ │ ├── structured_log_test.go │ │ └── temp_file.go └── telemetry │ ├── files │ ├── int-rest-consumer-addon.yaml │ ├── rest-consumer.yaml │ └── rest-producer.yaml │ └── telemetry_test.go ├── examples └── README.md ├── go.mod ├── go.sum ├── helm └── camel-k │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ └── camel-k-crds.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── default-itp.yaml │ ├── operator-deployment.yaml │ ├── operator-svcs.yaml │ ├── rbacs-common.yaml │ ├── rbacs-descoped.yaml │ └── rbacs-namespaced.yaml │ └── values.yaml ├── install ├── base │ ├── config │ └── kustomization.yaml └── overlays │ ├── kubernetes │ ├── descoped │ │ ├── kustomization.yaml │ │ ├── patch-operator-id.yaml │ │ └── patch-watch-namespace-global.yaml │ └── namespaced │ │ ├── kustomization.yaml │ │ ├── patch-install-default-kamelets.yaml │ │ ├── patch-log-level.yaml │ │ ├── patch-node-selector.yaml │ │ ├── patch-operator-id.yaml │ │ ├── patch-ports.yaml │ │ ├── patch-resource-requirements.yaml │ │ └── patch-toleration.yaml │ └── platform │ ├── integration-platform.yaml │ └── kustomization.yaml ├── pkg ├── apis │ ├── addtoscheme_camel_v1.go │ ├── addtoscheme_keda_duck_v1alpha1.go │ ├── addtoscheme_knative_eventing.go │ ├── addtoscheme_knative_serving.go │ ├── addtoscheme_monitoring.go │ ├── addtoscheme_olm.go │ ├── addtoscheme_openshift.go │ ├── addtoscheme_strimzi_duck_v1beta2.go │ ├── apis.go │ ├── camel │ │ ├── group.go │ │ └── v1 │ │ │ ├── build_type_support_test.go │ │ │ ├── build_types.go │ │ │ ├── build_types_support.go │ │ │ ├── camelcatalog_types.go │ │ │ ├── camelcatalog_types_support.go │ │ │ ├── common_types.go │ │ │ ├── common_types_support.go │ │ │ ├── common_types_support_test.go │ │ │ ├── doc.go │ │ │ ├── error_handler_types.go │ │ │ ├── error_handler_types_support.go │ │ │ ├── health.go │ │ │ ├── integration_types.go │ │ │ ├── integration_types_support.go │ │ │ ├── integration_types_support_test.go │ │ │ ├── integrationkit_types.go │ │ │ ├── integrationkit_types_support.go │ │ │ ├── integrationkit_types_support_test.go │ │ │ ├── integrationplatform_types.go │ │ │ ├── integrationplatform_types_support.go │ │ │ ├── integrationprofile_types.go │ │ │ ├── integrationprofile_types_support.go │ │ │ ├── jsonschema_types.go │ │ │ ├── kamelet_types.go │ │ │ ├── kamelet_types_support.go │ │ │ ├── maven_types.go │ │ │ ├── maven_types_support.go │ │ │ ├── maven_types_support_test.go │ │ │ ├── pipe_types.go │ │ │ ├── pipe_types_support.go │ │ │ ├── pipe_types_support_test.go │ │ │ ├── register.go │ │ │ ├── trait │ │ │ ├── affinity.go │ │ │ ├── base.go │ │ │ ├── builder.go │ │ │ ├── camel.go │ │ │ ├── container.go │ │ │ ├── cron.go │ │ │ ├── dependencies.go │ │ │ ├── deployer.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── environment.go │ │ │ ├── error_handler.go │ │ │ ├── gc.go │ │ │ ├── health.go │ │ │ ├── ingress.go │ │ │ ├── init_containers.go │ │ │ ├── istio.go │ │ │ ├── jolokia.go │ │ │ ├── jvm.go │ │ │ ├── kamelets.go │ │ │ ├── keda.go │ │ │ ├── knative.go │ │ │ ├── knative_service.go │ │ │ ├── logging.go │ │ │ ├── master.go │ │ │ ├── mount.go │ │ │ ├── openapi.go │ │ │ ├── owner.go │ │ │ ├── pdb.go │ │ │ ├── platform.go │ │ │ ├── pod.go │ │ │ ├── prometheus.go │ │ │ ├── pull_secret.go │ │ │ ├── quarkus.go │ │ │ ├── registry.go │ │ │ ├── route.go │ │ │ ├── security_context.go │ │ │ ├── service.go │ │ │ ├── service_binding.go │ │ │ ├── support.go │ │ │ ├── telemetry.go │ │ │ ├── toleration.go │ │ │ ├── zz_desc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated_doc.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ └── duck │ │ ├── keda │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── duck_types.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ │ └── strimzi │ │ └── v1beta2 │ │ ├── doc.go │ │ ├── duck_types.go │ │ ├── register.go │ │ └── zz_generated.deepcopy.go ├── builder │ ├── builder.go │ ├── builder_support_test.go │ ├── builder_test.go │ ├── common.go │ ├── common_test.go │ ├── git.go │ ├── git_test.go │ ├── image.go │ ├── image_test.go │ ├── jib.go │ ├── jib_test.go │ ├── project.go │ ├── project_test.go │ ├── quarkus.go │ ├── quarkus_test.go │ ├── runtime_support.go │ ├── s2i.go │ ├── steps.go │ ├── steps_test.go │ ├── tasks.go │ ├── types.go │ └── util.go ├── client │ ├── apply.go │ ├── camel │ │ ├── applyconfiguration │ │ │ ├── camel │ │ │ │ └── v1 │ │ │ │ │ ├── addontrait.go │ │ │ │ │ ├── artifact.go │ │ │ │ │ ├── basetask.go │ │ │ │ │ ├── build.go │ │ │ │ │ ├── buildahtask.go │ │ │ │ │ ├── buildcondition.go │ │ │ │ │ ├── buildconfiguration.go │ │ │ │ │ ├── buildertask.go │ │ │ │ │ ├── buildspec.go │ │ │ │ │ ├── buildstatus.go │ │ │ │ │ ├── camelartifact.go │ │ │ │ │ ├── camelartifactdependency.go │ │ │ │ │ ├── camelartifactexclusion.go │ │ │ │ │ ├── camelcatalog.go │ │ │ │ │ ├── camelcatalogcondition.go │ │ │ │ │ ├── camelcatalogspec.go │ │ │ │ │ ├── camelcatalogstatus.go │ │ │ │ │ ├── camelloader.go │ │ │ │ │ ├── camelproperty.go │ │ │ │ │ ├── camelscheme.go │ │ │ │ │ ├── camelschemescope.go │ │ │ │ │ ├── capability.go │ │ │ │ │ ├── catalog.go │ │ │ │ │ ├── configurationspec.go │ │ │ │ │ ├── dataspec.go │ │ │ │ │ ├── datatypereference.go │ │ │ │ │ ├── datatypespec.go │ │ │ │ │ ├── datatypesspec.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── endpointproperties.go │ │ │ │ │ ├── errorhandlerspec.go │ │ │ │ │ ├── eventtypespec.go │ │ │ │ │ ├── externaldocumentation.go │ │ │ │ │ ├── failure.go │ │ │ │ │ ├── failurerecovery.go │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── gitconfigspec.go │ │ │ │ │ ├── headerspec.go │ │ │ │ │ ├── healthcheckresponse.go │ │ │ │ │ ├── integration.go │ │ │ │ │ ├── integrationcondition.go │ │ │ │ │ ├── integrationkit.go │ │ │ │ │ ├── integrationkitcondition.go │ │ │ │ │ ├── integrationkitspec.go │ │ │ │ │ ├── integrationkitstatus.go │ │ │ │ │ ├── integrationkittraits.go │ │ │ │ │ ├── integrationplatform.go │ │ │ │ │ ├── integrationplatformbuildspec.go │ │ │ │ │ ├── integrationplatformcondition.go │ │ │ │ │ ├── integrationplatformkameletspec.go │ │ │ │ │ ├── integrationplatformspec.go │ │ │ │ │ ├── integrationplatformstatus.go │ │ │ │ │ ├── integrationprofile.go │ │ │ │ │ ├── integrationprofilebuildspec.go │ │ │ │ │ ├── integrationprofilecondition.go │ │ │ │ │ ├── integrationprofilekameletspec.go │ │ │ │ │ ├── integrationprofilespec.go │ │ │ │ │ ├── integrationprofilestatus.go │ │ │ │ │ ├── integrationspec.go │ │ │ │ │ ├── integrationstatus.go │ │ │ │ │ ├── jibtask.go │ │ │ │ │ ├── json.go │ │ │ │ │ ├── jsonschemaprop.go │ │ │ │ │ ├── jsonschemaprops.go │ │ │ │ │ ├── kamelet.go │ │ │ │ │ ├── kameletcondition.go │ │ │ │ │ ├── kameletproperty.go │ │ │ │ │ ├── kameletrepositoryspec.go │ │ │ │ │ ├── kameletspec.go │ │ │ │ │ ├── kameletspecbase.go │ │ │ │ │ ├── kameletstatus.go │ │ │ │ │ ├── kanikotask.go │ │ │ │ │ ├── kanikotaskcache.go │ │ │ │ │ ├── mavenartifact.go │ │ │ │ │ ├── mavenbuildspec.go │ │ │ │ │ ├── mavenspec.go │ │ │ │ │ ├── pipe.go │ │ │ │ │ ├── pipecondition.go │ │ │ │ │ ├── pipespec.go │ │ │ │ │ ├── pipestatus.go │ │ │ │ │ ├── podcondition.go │ │ │ │ │ ├── podspec.go │ │ │ │ │ ├── podspectemplate.go │ │ │ │ │ ├── publishtask.go │ │ │ │ │ ├── registryspec.go │ │ │ │ │ ├── repository.go │ │ │ │ │ ├── repositorypolicy.go │ │ │ │ │ ├── runtimespec.go │ │ │ │ │ ├── s2itask.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── sourcespec.go │ │ │ │ │ ├── spectrumtask.go │ │ │ │ │ ├── task.go │ │ │ │ │ ├── template.go │ │ │ │ │ ├── traitconfiguration.go │ │ │ │ │ ├── traits.go │ │ │ │ │ ├── traitspec.go │ │ │ │ │ ├── usertask.go │ │ │ │ │ └── valuesource.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ └── utils.go │ │ ├── clientset │ │ │ └── versioned │ │ │ │ ├── clientset.go │ │ │ │ ├── fake │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── camel │ │ │ │ └── v1 │ │ │ │ ├── build.go │ │ │ │ ├── camel_client.go │ │ │ │ ├── camelcatalog.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_build.go │ │ │ │ ├── fake_camel_client.go │ │ │ │ ├── fake_camelcatalog.go │ │ │ │ ├── fake_integration.go │ │ │ │ ├── fake_integrationkit.go │ │ │ │ ├── fake_integrationplatform.go │ │ │ │ ├── fake_integrationprofile.go │ │ │ │ ├── fake_kamelet.go │ │ │ │ └── fake_pipe.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── integration.go │ │ │ │ ├── integrationkit.go │ │ │ │ ├── integrationplatform.go │ │ │ │ ├── integrationprofile.go │ │ │ │ ├── kamelet.go │ │ │ │ └── pipe.go │ │ ├── informers │ │ │ └── externalversions │ │ │ │ ├── camel │ │ │ │ ├── interface.go │ │ │ │ └── v1 │ │ │ │ │ ├── build.go │ │ │ │ │ ├── camelcatalog.go │ │ │ │ │ ├── integration.go │ │ │ │ │ ├── integrationkit.go │ │ │ │ │ ├── integrationplatform.go │ │ │ │ │ ├── integrationprofile.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── kamelet.go │ │ │ │ │ └── pipe.go │ │ │ │ ├── factory.go │ │ │ │ ├── generic.go │ │ │ │ └── internalinterfaces │ │ │ │ └── factory_interfaces.go │ │ └── listers │ │ │ └── camel │ │ │ └── v1 │ │ │ ├── build.go │ │ │ ├── camelcatalog.go │ │ │ ├── expansion_generated.go │ │ │ ├── integration.go │ │ │ ├── integrationkit.go │ │ │ ├── integrationplatform.go │ │ │ ├── integrationprofile.go │ │ │ ├── kamelet.go │ │ │ └── pipe.go │ ├── client.go │ ├── fastmapper.go │ ├── keda │ │ └── clientset │ │ │ └── internalclientset │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── keda │ │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_keda_client.go │ │ │ ├── fake_scaledobject.go │ │ │ └── fake_triggerauthentication.go │ │ │ ├── generated_expansion.go │ │ │ ├── keda_client.go │ │ │ ├── scaledobject.go │ │ │ └── triggerauthentication.go │ ├── scale.go │ └── strimzi │ │ └── clientset │ │ └── internalclientset │ │ ├── clientset.go │ │ ├── fake │ │ ├── clientset_generated.go │ │ ├── doc.go │ │ └── register.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ └── strimzi │ │ └── v1beta2 │ │ ├── doc.go │ │ ├── fake │ │ ├── doc.go │ │ ├── fake_kafka.go │ │ ├── fake_kafkatopic.go │ │ └── fake_strimzi_client.go │ │ ├── generated_expansion.go │ │ ├── kafka.go │ │ ├── kafkatopic.go │ │ └── strimzi_client.go ├── cmd │ ├── bind.go │ ├── bind_test.go │ ├── builder.go │ ├── builder │ │ └── builder.go │ ├── builder_test.go │ ├── cmd_support_test.go │ ├── debug.go │ ├── debug_test.go │ ├── delete.go │ ├── delete_test.go │ ├── deploy.go │ ├── deploy_test.go │ ├── dump.go │ ├── get.go │ ├── kit.go │ ├── kit_create.go │ ├── kit_create_test.go │ ├── kit_delete.go │ ├── kit_get.go │ ├── kit_test.go │ ├── log.go │ ├── log_test.go │ ├── modeline.go │ ├── modeline_test.go │ ├── operator.go │ ├── operator │ │ └── operator.go │ ├── operator_test.go │ ├── promote.go │ ├── promote_test.go │ ├── rebuild.go │ ├── rebuild_test.go │ ├── reset.go │ ├── root.go │ ├── root_test.go │ ├── run.go │ ├── run_support.go │ ├── run_support_test.go │ ├── run_test.go │ ├── source │ │ ├── content.go │ │ ├── content_test.go │ │ ├── source.go │ │ ├── util.go │ │ └── util_test.go │ ├── undeploy.go │ ├── undeploy_test.go │ ├── util.go │ ├── util_config.go │ ├── version.go │ └── version_test.go ├── controller │ ├── add_build.go │ ├── add_catalog.go │ ├── add_integration.go │ ├── add_integrationkit.go │ ├── add_integrationplatform.go │ ├── add_pipe.go │ ├── build │ │ ├── action.go │ │ ├── build_controller.go │ │ ├── build_monitor.go │ │ ├── build_monitor_test.go │ │ ├── build_pod.go │ │ ├── build_pod_test.go │ │ ├── error.go │ │ ├── initialize_pod.go │ │ ├── initialize_routine.go │ │ ├── log.go │ │ ├── metrics.go │ │ ├── monitor_pod.go │ │ ├── monitor_routine.go │ │ ├── recovery.go │ │ └── schedule.go │ ├── catalog │ │ ├── action.go │ │ ├── catalog_controller.go │ │ ├── initialize.go │ │ ├── log.go │ │ └── monitor.go │ ├── controller.go │ ├── integration │ │ ├── action.go │ │ ├── build.go │ │ ├── build_kit.go │ │ ├── build_kit_test.go │ │ ├── build_test.go │ │ ├── health.go │ │ ├── health_test.go │ │ ├── initialize.go │ │ ├── initialize_test.go │ │ ├── integration_controller.go │ │ ├── kits.go │ │ ├── kits_test.go │ │ ├── log.go │ │ ├── metrics.go │ │ ├── metrics_test.go │ │ ├── monitor.go │ │ ├── monitor_cronjob.go │ │ ├── monitor_deployment.go │ │ ├── monitor_knative.go │ │ ├── monitor_synthetic.go │ │ ├── monitor_synthetic_test.go │ │ ├── monitor_test.go │ │ ├── monitor_unknown.go │ │ ├── platform_setup.go │ │ └── predicate.go │ ├── integrationkit │ │ ├── action.go │ │ ├── build.go │ │ ├── error.go │ │ ├── initialize.go │ │ ├── integrationkit_controller.go │ │ ├── log.go │ │ └── monitor.go │ ├── integrationplatform │ │ ├── action.go │ │ ├── create.go │ │ ├── create_test.go │ │ ├── initialize.go │ │ ├── initialize_test.go │ │ ├── integrationplatform_controller.go │ │ ├── kamelets.go │ │ ├── kamelets_test.go │ │ ├── log.go │ │ ├── monitor.go │ │ └── monitor_test.go │ ├── pipe │ │ ├── action.go │ │ ├── error_handler.go │ │ ├── error_handler_test.go │ │ ├── initialize.go │ │ ├── initialize_test.go │ │ ├── integration.go │ │ ├── integration_test.go │ │ ├── log.go │ │ ├── monitor.go │ │ ├── monitor_test.go │ │ └── pipe_controller.go │ └── synthetic │ │ ├── synthetic.go │ │ └── synthetic_test.go ├── event │ ├── injectable.go │ └── manager.go ├── install │ ├── common.go │ ├── openshift.go │ └── optional.go ├── internal │ ├── client.go │ ├── fakeStatusWriter.go │ └── knative │ │ ├── types.go │ │ ├── types_support.go │ │ └── types_support_test.go ├── kamelet │ └── repository │ │ ├── common.go │ │ ├── composite_repository.go │ │ ├── composite_repository_test.go │ │ ├── empty_repository.go │ │ ├── empty_repository_test.go │ │ ├── github_repository.go │ │ ├── github_repository_test.go │ │ ├── kubernetes_repository.go │ │ ├── kubernetes_repository_test.go │ │ ├── repository.go │ │ └── repository_test.go ├── metadata │ ├── doc.go │ ├── metadata.go │ ├── metadata_capabilities_test.go │ ├── metadata_dependencies_test.go │ ├── metadata_http_test.go │ ├── metadata_uri_test.go │ └── types.go ├── platform │ ├── defaults.go │ ├── defaults_test.go │ ├── doc.go │ ├── operator.go │ ├── platform.go │ ├── profile.go │ └── profile_test.go ├── resources │ ├── config │ │ ├── crd │ │ │ ├── bases │ │ │ │ ├── camel.apache.org_builds.yaml │ │ │ │ ├── camel.apache.org_camelcatalogs.yaml │ │ │ │ ├── camel.apache.org_integrationkits.yaml │ │ │ │ ├── camel.apache.org_integrationplatforms.yaml │ │ │ │ ├── camel.apache.org_integrationprofiles.yaml │ │ │ │ ├── camel.apache.org_integrations.yaml │ │ │ │ ├── camel.apache.org_kamelets.yaml │ │ │ │ └── camel.apache.org_pipes.yaml │ │ │ └── kustomization.yaml │ │ ├── helm │ │ │ ├── common │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-rolebinding-subjects.yaml │ │ │ ├── descoped │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-rolebinding-subjects.yaml │ │ │ └── namespaced │ │ │ │ └── kustomization.yaml │ │ ├── manager │ │ │ ├── builder-service-account.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── operator-deployment.yaml │ │ │ └── operator-service-account.yaml │ │ ├── manifests │ │ │ ├── .vfsignore │ │ │ ├── bases │ │ │ │ └── camel-k.clusterserviceversion.yaml │ │ │ └── kustomization.yaml │ │ ├── prometheus │ │ │ ├── kustomization.yaml │ │ │ ├── operator-pod-monitor.yaml │ │ │ └── operator-prometheus-rule.yaml │ │ ├── rbac │ │ │ ├── builder-role-binding-openshift.yaml │ │ │ ├── builder-role-binding.yaml │ │ │ ├── builder-role-openshift.yaml │ │ │ ├── builder-role.yaml │ │ │ ├── descoped │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── operator-cluster-role-binding-events.yaml │ │ │ │ ├── operator-cluster-role-binding-keda.yaml │ │ │ │ ├── operator-cluster-role-binding-knative.yaml │ │ │ │ ├── operator-cluster-role-binding-leases.yaml │ │ │ │ ├── operator-cluster-role-binding-openshift.yaml │ │ │ │ ├── operator-cluster-role-binding-podmonitors.yaml │ │ │ │ ├── operator-cluster-role-binding-strimzi.yaml │ │ │ │ ├── operator-cluster-role-binding.yaml │ │ │ │ ├── operator-cluster-role-events.yaml │ │ │ │ ├── operator-cluster-role-keda.yaml │ │ │ │ ├── operator-cluster-role-knative.yaml │ │ │ │ ├── operator-cluster-role-leases.yaml │ │ │ │ ├── operator-cluster-role-openshift.yaml │ │ │ │ ├── operator-cluster-role-podmonitors.yaml │ │ │ │ ├── operator-cluster-role-strimzi.yaml │ │ │ │ └── operator-cluster-role.yaml │ │ │ ├── kamelets-viewer-role-binding.yaml │ │ │ ├── kamelets-viewer-role.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespaced │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── operator-role-binding-events.yaml │ │ │ │ ├── operator-role-binding-keda.yaml │ │ │ │ ├── operator-role-binding-knative.yaml │ │ │ │ ├── operator-role-binding-leases.yaml │ │ │ │ ├── operator-role-binding-openshift.yaml │ │ │ │ ├── operator-role-binding-podmonitors.yaml │ │ │ │ ├── operator-role-binding-strimzi.yaml │ │ │ │ ├── operator-role-binding.yaml │ │ │ │ ├── operator-role-events.yaml │ │ │ │ ├── operator-role-keda.yaml │ │ │ │ ├── operator-role-knative.yaml │ │ │ │ ├── operator-role-leases.yaml │ │ │ │ ├── operator-role-openshift.yaml │ │ │ │ ├── operator-role-podmonitors.yaml │ │ │ │ ├── operator-role-strimzi.yaml │ │ │ │ └── operator-role.yaml │ │ │ ├── patch-role-to-clusterrole.yaml │ │ │ └── patch-rolebinding-to-clusterrolebinding.yaml │ │ ├── samples │ │ │ ├── bases │ │ │ │ ├── camel_v1_build.yaml │ │ │ │ ├── camel_v1_camelcatalog.yaml │ │ │ │ ├── camel_v1_integration.yaml │ │ │ │ ├── camel_v1_integrationkit.yaml │ │ │ │ ├── camel_v1_integrationplatform.yaml │ │ │ │ ├── camel_v1_integrationprofile.yaml │ │ │ │ ├── camel_v1_kamelet.yaml │ │ │ │ └── camel_v1_pipe.yaml │ │ │ ├── kustomization.yaml │ │ │ └── patch-integration-platform.yaml │ │ └── scorecard │ │ │ ├── .vfsignore │ │ │ ├── bases │ │ │ └── config.yaml │ │ │ ├── kustomization.yaml │ │ │ └── patches │ │ │ ├── basic.config.yaml │ │ │ └── olm.config.yaml │ ├── resources │ │ ├── addons │ │ │ └── master │ │ │ │ ├── master-role-binding.tmpl │ │ │ │ ├── master-role-configmap.tmpl │ │ │ │ └── master-role-lease.tmpl │ │ └── camel-catalog-3.15.3.yaml │ ├── resources_support.go │ └── resources_test.go ├── trait │ ├── affinity.go │ ├── affinity_test.go │ ├── builder.go │ ├── builder_test.go │ ├── camel.go │ ├── camel_test.go │ ├── container.go │ ├── container_probes_test.go │ ├── container_test.go │ ├── cron.go │ ├── cron_test.go │ ├── dependencies.go │ ├── dependencies_test.go │ ├── deployer.go │ ├── deployer_test.go │ ├── deployment.go │ ├── deployment_test.go │ ├── discovery │ │ ├── jaeger.go │ │ └── locator.go │ ├── doc.go │ ├── environment.go │ ├── environment_test.go │ ├── gc.go │ ├── gc_test.go │ ├── git.go │ ├── health.go │ ├── health_test.go │ ├── ingress.go │ ├── ingress_test.go │ ├── init.go │ ├── init_containers.go │ ├── init_containers_test.go │ ├── istio.go │ ├── istio_test.go │ ├── jolokia.go │ ├── jolokia_test.go │ ├── jvm.go │ ├── jvm_agent.go │ ├── jvm_test.go │ ├── kamelets.go │ ├── kamelets_support.go │ ├── kamelets_support_test.go │ ├── kamelets_test.go │ ├── keda.go │ ├── keda_test.go │ ├── knative.go │ ├── knative_service.go │ ├── knative_service_test.go │ ├── knative_test.go │ ├── logging.go │ ├── logging_test.go │ ├── master.go │ ├── master_test.go │ ├── mount.go │ ├── mount_support.go │ ├── mount_test.go │ ├── owner.go │ ├── owner_test.go │ ├── pdb.go │ ├── pdb_test.go │ ├── platform.go │ ├── platform_test.go │ ├── pod.go │ ├── pod_test.go │ ├── prometheus.go │ ├── prometheus_test.go │ ├── pull_secret.go │ ├── pull_secret_test.go │ ├── quarkus.go │ ├── quarkus_test.go │ ├── resolver.go │ ├── route.go │ ├── route_test.go │ ├── security_context.go │ ├── security_context_test.go │ ├── service.go │ ├── service_test.go │ ├── telemetry.go │ ├── telemetry_test.go │ ├── toleration.go │ ├── toleration_test.go │ ├── trait.go │ ├── trait_catalog.go │ ├── trait_catalog_test.go │ ├── trait_condition_types.go │ ├── trait_configure.go │ ├── trait_configure_test.go │ ├── trait_factory.go │ ├── trait_register.go │ ├── trait_support.go │ ├── trait_support_test.go │ ├── trait_test.go │ ├── trait_types.go │ ├── trait_types_test.go │ ├── util.go │ ├── util_test.go │ ├── zz_desc_generated.go │ └── zz_generated_doc.go └── util │ ├── bindings │ ├── api.go │ ├── api_support.go │ ├── binding_support_test.go │ ├── bindings_test.go │ ├── camel_uri.go │ ├── camel_uri_test.go │ ├── catalog.go │ ├── catalog_test.go │ ├── kamelet.go │ ├── kamelet_test.go │ ├── knative_ref.go │ ├── knative_ref_test.go │ ├── knative_uri.go │ ├── knative_uri_test.go │ ├── service_ref.go │ ├── service_ref_test.go │ ├── strimzi.go │ └── strimzi_test.go │ ├── boolean │ └── boolean.go │ ├── camel │ ├── camel_dependencies.go │ ├── camel_dependencies_test.go │ ├── camel_runtime.go │ ├── camel_runtime_catalog.go │ ├── camel_runtime_catalog_test.go │ ├── camel_runtime_test.go │ ├── camel_types.go │ ├── camel_util.go │ ├── camel_util_test.go │ ├── catalog.go │ └── catalog_test.go │ ├── command.go │ ├── command_test.go │ ├── config │ └── config.go │ ├── defaults │ ├── defaults.go │ ├── defaults_support.go │ └── defaults_test.go │ ├── digest │ ├── digest.go │ └── digest_test.go │ ├── dsl │ ├── template.go │ └── template_test.go │ ├── envvar │ ├── envvar.go │ └── envvar_test.go │ ├── gzip │ ├── compress.go │ └── compress_test.go │ ├── io │ └── io.go │ ├── jib │ └── configuration.go │ ├── jitpack │ ├── jitpack.go │ └── jitpack_test.go │ ├── jvm │ ├── keystore.go │ └── keystore_test.go │ ├── knative │ ├── apis.go │ ├── apis_test.go │ ├── enabled.go │ ├── knative.go │ ├── uri.go │ └── uri_test.go │ ├── kubernetes │ ├── camel.go │ ├── client.go │ ├── collection.go │ ├── conditions.go │ ├── discovery.go │ ├── errors.go │ ├── factory.go │ ├── factory_test.go │ ├── loader.go │ ├── log │ │ ├── annotation_scraper.go │ │ ├── pod_scraper.go │ │ └── util.go │ ├── lookup.go │ ├── permission.go │ ├── portforward.go │ ├── printer.go │ ├── replace.go │ ├── sanitize.go │ ├── sanitize_test.go │ ├── service.go │ ├── util.go │ └── util_test.go │ ├── log │ └── log.go │ ├── maven │ ├── maven_command.go │ ├── maven_command_test.go │ ├── maven_log.go │ ├── maven_log_test.go │ ├── maven_project.go │ ├── maven_project_test.go │ ├── maven_proxies.go │ ├── maven_proxies_test.go │ ├── maven_repositories.go │ ├── maven_settings.go │ ├── maven_settings_test.go │ └── maven_types.go │ ├── modeline │ ├── parser.go │ ├── parser_test.go │ └── types.go │ ├── monitoring │ ├── controller.go │ ├── register.go │ └── timer.go │ ├── openshift │ ├── openshift.go │ ├── openshift_test.go │ └── register.go │ ├── patch │ └── patch.go │ ├── property │ ├── property.go │ └── property_test.go │ ├── reference │ ├── reference.go │ └── reference_test.go │ ├── registry │ └── registry.go │ ├── resource │ ├── config.go │ └── config_test.go │ ├── s2i │ └── build.go │ ├── sets │ ├── set.go │ └── set_test.go │ ├── source │ ├── inspector.go │ ├── inspector_java_source.go │ ├── inspector_java_source_test.go │ ├── inspector_xml.go │ ├── inspector_xml_test.go │ ├── inspector_yaml.go │ ├── inspector_yaml_test.go │ ├── kamelet.go │ ├── kamelet_test.go │ ├── source_support_test.go │ └── types.go │ ├── sync │ ├── file.go │ └── file_test.go │ ├── tar │ └── util_compress.go │ ├── uri │ ├── uri.go │ └── uri_test.go │ ├── util.go │ ├── util_test.go │ └── watch │ └── watch.go ├── proposals ├── assets │ ├── camel-k-monitoring.svg │ ├── client-certificate-monitoring.svg │ ├── prometheus-operator.png │ ├── service-account-token-monitoring.svg │ └── service-binding.svg ├── monitoring-security.adoc ├── provided-kamelets.adoc └── service-binding.adoc ├── release-utils └── scripts │ ├── promote-release.sh │ ├── sign.sh │ └── upload-source.sh ├── release.adoc └── script ├── .vfsignore ├── Makefile ├── add_createdAt.sh ├── add_license.sh ├── build_bundle_index.sh ├── camel-k-runtime-archetype └── pom.xml ├── check_crd_api_support.sh ├── check_licenses.sh ├── check_platform.sh ├── clone_kamelets.sh ├── cross_compile.sh ├── gen_client.sh ├── gen_crd.sh ├── gen_crd ├── gen-crd-api-config.json ├── gen-kamelets-crd-api-config.json ├── gen_crd_api.sh └── template │ ├── members.tpl │ ├── pkg.tpl │ └── type.tpl ├── gen_doc.sh ├── gen_helm.sh ├── get_catalog.sh ├── git_tag.sh ├── headers ├── default-jvm.txt ├── default.txt ├── js.txt ├── sh.txt ├── xml.txt └── yaml.txt ├── images_push.sh ├── maven-settings-offline-template.xml ├── maven-settings.xml ├── offline_dependencies.sh ├── package_maven_artifacts.sh ├── prepare-operators.sh ├── prepare_release.sh ├── prune-camel-k-kit-images.sh ├── publish_base_images.sh ├── release-branch.sh ├── release_helm.sh ├── set_version.sh ├── update_default_camel.sh └── update_docs.sh /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | openshift.local.clusterup* -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/actions/automatic-updates/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/actions/automatic-updates/action.yml -------------------------------------------------------------------------------- /.github/actions/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/actions/build/action.yml -------------------------------------------------------------------------------- /.github/actions/infra-setting/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/actions/infra-setting/action.yml -------------------------------------------------------------------------------- /.github/actions/release-nightly/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/actions/release-nightly/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/comment-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/comment-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/common.yml -------------------------------------------------------------------------------- /.github/workflows/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/install.yml -------------------------------------------------------------------------------- /.github/workflows/kafka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/kafka.yml -------------------------------------------------------------------------------- /.github/workflows/knative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/knative.yml -------------------------------------------------------------------------------- /.github/workflows/native.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/native.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-install-olm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/nightly-install-olm.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-latest-runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/nightly-latest-runtime.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-multi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/nightly-multi.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/nightly-release.yml -------------------------------------------------------------------------------- /.github/workflows/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/security.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/telemetry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/telemetry.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /KEYS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/KEYS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | ./script/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/NOTICE -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/PROJECT -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/README.adoc -------------------------------------------------------------------------------- /cmd/kamel/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/cmd/kamel/main.go -------------------------------------------------------------------------------- /cmd/util/doc-gen/generators/generators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/cmd/util/doc-gen/generators/generators.go -------------------------------------------------------------------------------- /cmd/util/doc-gen/generators/traitdocgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/cmd/util/doc-gen/generators/traitdocgen.go -------------------------------------------------------------------------------- /cmd/util/doc-gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/cmd/util/doc-gen/main.go -------------------------------------------------------------------------------- /cmd/util/license-check/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/cmd/util/license-check/main.go -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | build -------------------------------------------------------------------------------- /docs/README_local_build.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/README_local_build.adoc -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/antora.yml -------------------------------------------------------------------------------- /docs/charts/camel-k-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.1.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.1.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.10.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.10.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.10.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.10.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.10.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.10.2.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.10.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.10.3.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.11.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.11.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.11.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.11.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.11.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.11.2.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.11.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.11.3.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.11.4.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.11.4.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.12.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.12.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.12.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.12.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.13.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.13.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.13.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.13.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.2.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.3.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.3.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.3.2.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.4.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.4.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.4.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.5.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.5.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.5.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.5.2.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.6.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.6.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.6.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.7.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.7.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.7.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.8.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.8.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.9.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.9.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.9.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.9.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-0.9.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-0.9.2.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.0.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.0.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.0.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.1.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.2.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.3.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.3.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.3.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.3.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.3.2.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.3.3.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.3.3.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.4.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.5.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.5.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.5.1.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.6.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.7.0.tgz -------------------------------------------------------------------------------- /docs/charts/camel-k-2.8.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/camel-k-2.8.0.tgz -------------------------------------------------------------------------------- /docs/charts/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/charts/index.yaml -------------------------------------------------------------------------------- /docs/diagrams-source/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/diagrams-source/README.adoc -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/local-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/local-build.sh -------------------------------------------------------------------------------- /docs/modules/ROOT/examples/js/ck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/examples/js/ck.js -------------------------------------------------------------------------------- /docs/modules/ROOT/images/concepts/pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/images/concepts/pipes.png -------------------------------------------------------------------------------- /docs/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/apis/camel-k.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/apis/camel-k.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/languages/java.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/languages/java.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/languages/xml.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/languages/xml.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/languages/yaml.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/languages/yaml.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/pipes/bind-cli.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/pipes/bind-cli.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/pipes/pipes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/pipes/pipes.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/pipes/promoting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/pipes/promoting.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/running/running.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/running/running.adoc -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/scaling/pipe.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/ROOT/pages/scaling/pipe.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/affinity.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/affinity.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/builder.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/builder.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/camel.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/camel.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/container.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/container.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/cron.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/cron.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/deployer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/deployer.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/deployment.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/deployment.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/environment.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/environment.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/health.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/health.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/ingress.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/ingress.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/istio.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/istio.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/jolokia.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/jolokia.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/jvm.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/jvm.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/kamelets.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/kamelets.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/keda.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/keda.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/knative.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/knative.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/logging.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/master.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/master.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/mount.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/mount.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/openapi.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/openapi.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/owner.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/owner.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/pdb.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/pdb.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/pod.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/pod.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/prometheus.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/prometheus.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/pull-secret.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/pull-secret.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/quarkus.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/quarkus.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/route.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/route.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/service.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/service.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/telemetry.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/telemetry.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/toleration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/toleration.adoc -------------------------------------------------------------------------------- /docs/modules/traits/pages/traits.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/modules/traits/pages/traits.adoc -------------------------------------------------------------------------------- /docs/source-map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/source-map.yml -------------------------------------------------------------------------------- /docs/source-watch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/docs/source-watch.yml -------------------------------------------------------------------------------- /e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/README.md -------------------------------------------------------------------------------- /e2e/advanced/build_max_pipelines_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/build_max_pipelines_test.go -------------------------------------------------------------------------------- /e2e/advanced/build_order_strategy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/build_order_strategy_test.go -------------------------------------------------------------------------------- /e2e/advanced/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/builder_test.go -------------------------------------------------------------------------------- /e2e/advanced/catalog_builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/catalog_builder_test.go -------------------------------------------------------------------------------- /e2e/advanced/debug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/debug_test.go -------------------------------------------------------------------------------- /e2e/advanced/dump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/dump_test.go -------------------------------------------------------------------------------- /e2e/advanced/environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/environment_test.go -------------------------------------------------------------------------------- /e2e/advanced/files/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/files/Java.java -------------------------------------------------------------------------------- /e2e/advanced/files/camel-k-tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/files/camel-k-tekton.yaml -------------------------------------------------------------------------------- /e2e/advanced/files/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/files/deploy.yaml -------------------------------------------------------------------------------- /e2e/advanced/files/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/files/example.yaml -------------------------------------------------------------------------------- /e2e/advanced/files/promote-route-edited.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/files/promote-route-edited.yaml -------------------------------------------------------------------------------- /e2e/advanced/files/promote-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/files/promote-route.yaml -------------------------------------------------------------------------------- /e2e/advanced/files/timer-kamelet-usage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/files/timer-kamelet-usage.yaml -------------------------------------------------------------------------------- /e2e/advanced/files/timer-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/files/timer-source.yaml -------------------------------------------------------------------------------- /e2e/advanced/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/advanced/incremental_build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/incremental_build_test.go -------------------------------------------------------------------------------- /e2e/advanced/integration_profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/integration_profile_test.go -------------------------------------------------------------------------------- /e2e/advanced/kamelet_repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/kamelet_repo_test.go -------------------------------------------------------------------------------- /e2e/advanced/maven_http_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/maven_http_proxy_test.go -------------------------------------------------------------------------------- /e2e/advanced/operator_id_filtering_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/operator_id_filtering_test.go -------------------------------------------------------------------------------- /e2e/advanced/operator_metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/operator_metrics_test.go -------------------------------------------------------------------------------- /e2e/advanced/operator_restart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/operator_restart_test.go -------------------------------------------------------------------------------- /e2e/advanced/operator_resume_unknown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/operator_resume_unknown_test.go -------------------------------------------------------------------------------- /e2e/advanced/platform_traits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/platform_traits_test.go -------------------------------------------------------------------------------- /e2e/advanced/promote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/promote_test.go -------------------------------------------------------------------------------- /e2e/advanced/reset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/reset_test.go -------------------------------------------------------------------------------- /e2e/advanced/synthetic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/synthetic_test.go -------------------------------------------------------------------------------- /e2e/advanced/tekton_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/advanced/tekton_test.go -------------------------------------------------------------------------------- /e2e/common/binding/binding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/binding/binding_test.go -------------------------------------------------------------------------------- /e2e/common/binding/hello.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/binding/hello.yaml -------------------------------------------------------------------------------- /e2e/common/binding/it-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/binding/it-binding.yaml -------------------------------------------------------------------------------- /e2e/common/cli/bind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/bind_test.go -------------------------------------------------------------------------------- /e2e/common/cli/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/delete_test.go -------------------------------------------------------------------------------- /e2e/common/cli/deploy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/deploy_test.go -------------------------------------------------------------------------------- /e2e/common/cli/files/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/files/Java.java -------------------------------------------------------------------------------- /e2e/common/cli/files/glob/Java1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/files/glob/Java1.java -------------------------------------------------------------------------------- /e2e/common/cli/files/glob/Java2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/files/glob/Java2.java -------------------------------------------------------------------------------- /e2e/common/cli/files/glob/run1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/files/glob/run1.yaml -------------------------------------------------------------------------------- /e2e/common/cli/files/glob/run2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/files/glob/run2.yaml -------------------------------------------------------------------------------- /e2e/common/cli/files/run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/files/run.yaml -------------------------------------------------------------------------------- /e2e/common/cli/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/common/cli/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/help_test.go -------------------------------------------------------------------------------- /e2e/common/cli/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/log_test.go -------------------------------------------------------------------------------- /e2e/common/cli/promote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/promote_test.go -------------------------------------------------------------------------------- /e2e/common/cli/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/run_test.go -------------------------------------------------------------------------------- /e2e/common/cli/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/cli/version_test.go -------------------------------------------------------------------------------- /e2e/common/config/config_reload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/config/config_reload_test.go -------------------------------------------------------------------------------- /e2e/common/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/config/config_test.go -------------------------------------------------------------------------------- /e2e/common/config/files/my.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/config/files/my.properties -------------------------------------------------------------------------------- /e2e/common/config/files/property-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/config/files/property-route.yaml -------------------------------------------------------------------------------- /e2e/common/config/files/quarkus.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/config/files/quarkus.properties -------------------------------------------------------------------------------- /e2e/common/config/files/resources-data-same.txt: -------------------------------------------------------------------------------- 1 | the file body -------------------------------------------------------------------------------- /e2e/common/config/files/resources-data.txt: -------------------------------------------------------------------------------- 1 | the file body -------------------------------------------------------------------------------- /e2e/common/config/files/resources-data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/config/files/resources-data.zip -------------------------------------------------------------------------------- /e2e/common/config/kamelet_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/config/kamelet_config_test.go -------------------------------------------------------------------------------- /e2e/common/config/pipe_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/config/pipe_config_test.go -------------------------------------------------------------------------------- /e2e/common/git/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/git/git_test.go -------------------------------------------------------------------------------- /e2e/common/languages/files/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/files/Java.java -------------------------------------------------------------------------------- /e2e/common/languages/files/PolyglotJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/files/PolyglotJava.java -------------------------------------------------------------------------------- /e2e/common/languages/files/Prop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/files/Prop.java -------------------------------------------------------------------------------- /e2e/common/languages/files/groovy.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/files/groovy.groovy -------------------------------------------------------------------------------- /e2e/common/languages/files/prop.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/files/prop.properties -------------------------------------------------------------------------------- /e2e/common/languages/files/xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/files/xml.xml -------------------------------------------------------------------------------- /e2e/common/languages/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/common/languages/java_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/java_test.go -------------------------------------------------------------------------------- /e2e/common/languages/polyglot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/polyglot_test.go -------------------------------------------------------------------------------- /e2e/common/languages/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/xml_test.go -------------------------------------------------------------------------------- /e2e/common/languages/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/languages/yaml_test.go -------------------------------------------------------------------------------- /e2e/common/misc/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/client_test.go -------------------------------------------------------------------------------- /e2e/common/misc/cross-ns/pipe-cross-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/cross-ns/pipe-cross-ns.yaml -------------------------------------------------------------------------------- /e2e/common/misc/cross-ns/sa-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/cross-ns/sa-role.yaml -------------------------------------------------------------------------------- /e2e/common/misc/cross-ns/sa-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/cross-ns/sa-rolebinding.yaml -------------------------------------------------------------------------------- /e2e/common/misc/cross-ns/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/cross-ns/sa.yaml -------------------------------------------------------------------------------- /e2e/common/misc/files/BadRoute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/files/BadRoute.java -------------------------------------------------------------------------------- /e2e/common/misc/files/InvalidJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/files/InvalidJava.java -------------------------------------------------------------------------------- /e2e/common/misc/files/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/files/Java.java -------------------------------------------------------------------------------- /e2e/common/misc/files/Unresolvable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/files/Unresolvable.java -------------------------------------------------------------------------------- /e2e/common/misc/files/petstore-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/files/petstore-api.yaml -------------------------------------------------------------------------------- /e2e/common/misc/files/petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/files/petstore.yaml -------------------------------------------------------------------------------- /e2e/common/misc/files/rest-consumer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/files/rest-consumer.yaml -------------------------------------------------------------------------------- /e2e/common/misc/files/rest-producer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/files/rest-producer.yaml -------------------------------------------------------------------------------- /e2e/common/misc/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/common/misc/integration_fail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/integration_fail_test.go -------------------------------------------------------------------------------- /e2e/common/misc/maven_repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/maven_repository_test.go -------------------------------------------------------------------------------- /e2e/common/misc/openapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/openapi_test.go -------------------------------------------------------------------------------- /e2e/common/misc/pipe_cross_ns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/pipe_cross_ns_test.go -------------------------------------------------------------------------------- /e2e/common/misc/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/pipe_test.go -------------------------------------------------------------------------------- /e2e/common/misc/rest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/rest_test.go -------------------------------------------------------------------------------- /e2e/common/misc/scale_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/scale_integration_test.go -------------------------------------------------------------------------------- /e2e/common/misc/structured_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/misc/structured_logs_test.go -------------------------------------------------------------------------------- /e2e/common/runtimes/runtimes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/runtimes/runtimes_test.go -------------------------------------------------------------------------------- /e2e/common/traits/affinity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/affinity_test.go -------------------------------------------------------------------------------- /e2e/common/traits/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/builder_test.go -------------------------------------------------------------------------------- /e2e/common/traits/camel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/camel_test.go -------------------------------------------------------------------------------- /e2e/common/traits/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/container_test.go -------------------------------------------------------------------------------- /e2e/common/traits/cron_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/cron_test.go -------------------------------------------------------------------------------- /e2e/common/traits/cross-ns/sa-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/cross-ns/sa-role.yaml -------------------------------------------------------------------------------- /e2e/common/traits/cross-ns/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/cross-ns/sa.yaml -------------------------------------------------------------------------------- /e2e/common/traits/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/deployment_test.go -------------------------------------------------------------------------------- /e2e/common/traits/files/CronJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/CronJava.java -------------------------------------------------------------------------------- /e2e/common/traits/files/ErroredRoute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/ErroredRoute.java -------------------------------------------------------------------------------- /e2e/common/traits/files/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/Java.java -------------------------------------------------------------------------------- /e2e/common/traits/files/Master.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/Master.java -------------------------------------------------------------------------------- /e2e/common/traits/files/NeverReady.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/NeverReady.java -------------------------------------------------------------------------------- /e2e/common/traits/files/PodTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/PodTest.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/ServiceBinding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/ServiceBinding.java -------------------------------------------------------------------------------- /e2e/common/traits/files/cron-fallback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/cron-fallback.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/cron-quartz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/cron-quartz.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/cron-tab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/cron-tab.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/cron-timer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/cron-timer.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/init-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/init-container.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/jvm/Classpath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/jvm/Classpath.java -------------------------------------------------------------------------------- /e2e/common/traits/files/jvm/sample-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/jvm/sample-1.0.jar -------------------------------------------------------------------------------- /e2e/common/traits/files/kamelet-it-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/kamelet-it-main.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/kamelet-it-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/kamelet-it-ns.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/kamelet-it-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/kamelet-it-v1.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/petstore-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/petstore-api.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/petstore.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/template.yaml -------------------------------------------------------------------------------- /e2e/common/traits/files/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/files/webhook.yaml -------------------------------------------------------------------------------- /e2e/common/traits/gc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/gc_test.go -------------------------------------------------------------------------------- /e2e/common/traits/health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/health_test.go -------------------------------------------------------------------------------- /e2e/common/traits/init_container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/init_container_test.go -------------------------------------------------------------------------------- /e2e/common/traits/istio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/istio_test.go -------------------------------------------------------------------------------- /e2e/common/traits/jolokia_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/jolokia_test.go -------------------------------------------------------------------------------- /e2e/common/traits/jvm_jolokia_agent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/jvm_jolokia_agent_test.go -------------------------------------------------------------------------------- /e2e/common/traits/jvm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/jvm_test.go -------------------------------------------------------------------------------- /e2e/common/traits/kamelet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/kamelet_test.go -------------------------------------------------------------------------------- /e2e/common/traits/master_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/master_test.go -------------------------------------------------------------------------------- /e2e/common/traits/pdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/pdb_test.go -------------------------------------------------------------------------------- /e2e/common/traits/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/pod_test.go -------------------------------------------------------------------------------- /e2e/common/traits/prometheus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/prometheus_test.go -------------------------------------------------------------------------------- /e2e/common/traits/pull_secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/pull_secret_test.go -------------------------------------------------------------------------------- /e2e/common/traits/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/route_test.go -------------------------------------------------------------------------------- /e2e/common/traits/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/service_test.go -------------------------------------------------------------------------------- /e2e/common/traits/toleration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/common/traits/toleration_test.go -------------------------------------------------------------------------------- /e2e/install/helm/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/install/helm/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/install/helm/setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/install/helm/setup_test.go -------------------------------------------------------------------------------- /e2e/install/kustomize/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/install/kustomize/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/install/kustomize/setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/install/kustomize/setup_test.go -------------------------------------------------------------------------------- /e2e/install/olm/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/install/olm/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/install/olm/olm_install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/install/olm/olm_install_test.go -------------------------------------------------------------------------------- /e2e/install/upgrade/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/install/upgrade/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/install/upgrade/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/install/upgrade/upgrade_test.go -------------------------------------------------------------------------------- /e2e/kafka/files/kafka-to-log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/files/kafka-to-log.yaml -------------------------------------------------------------------------------- /e2e/kafka/files/kafkatopic-to-log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/files/kafkatopic-to-log.yaml -------------------------------------------------------------------------------- /e2e/kafka/files/keda-kafkatopic-to-log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/files/keda-kafkatopic-to-log.yaml -------------------------------------------------------------------------------- /e2e/kafka/files/timer-to-kafka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/files/timer-to-kafka.yaml -------------------------------------------------------------------------------- /e2e/kafka/files/timer-to-kafkatopic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/files/timer-to-kafkatopic.yaml -------------------------------------------------------------------------------- /e2e/kafka/kafka_autoscale_keda_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/kafka_autoscale_keda_test.go -------------------------------------------------------------------------------- /e2e/kafka/kafka_binding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/kafka_binding_test.go -------------------------------------------------------------------------------- /e2e/kafka/setup/kafka-ephemeral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/setup/kafka-ephemeral.yaml -------------------------------------------------------------------------------- /e2e/kafka/setup/kafka-topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/setup/kafka-topic.yaml -------------------------------------------------------------------------------- /e2e/kafka/setup/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/kafka/setup/setup.sh -------------------------------------------------------------------------------- /e2e/knative/files/PlatformHttpServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/PlatformHttpServer.java -------------------------------------------------------------------------------- /e2e/knative/files/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/flow.yaml -------------------------------------------------------------------------------- /e2e/knative/files/http_out.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/http_out.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knative1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knative1.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knative2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knative2.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knative3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knative3.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativech1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativech1.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativech2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativech2.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativeevt1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativeevt1.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativeevt2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativeevt2.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativegetpost1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativegetpost1.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativegetpost2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativegetpost2.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativemultihop1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativemultihop1.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativemultihop2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativemultihop2.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativemultihop3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativemultihop3.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativeurl1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativeurl1.yaml -------------------------------------------------------------------------------- /e2e/knative/files/knativeurl2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/knativeurl2.yaml -------------------------------------------------------------------------------- /e2e/knative/files/petstore-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/petstore-api.yaml -------------------------------------------------------------------------------- /e2e/knative/files/petstore-cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/petstore-cf.yaml -------------------------------------------------------------------------------- /e2e/knative/files/petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/petstore.yaml -------------------------------------------------------------------------------- /e2e/knative/files/podtest-knative1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/podtest-knative1.yaml -------------------------------------------------------------------------------- /e2e/knative/files/podtest-knative2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/podtest-knative2.yaml -------------------------------------------------------------------------------- /e2e/knative/files/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/setup.sh -------------------------------------------------------------------------------- /e2e/knative/files/template-knative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/template-knative.yaml -------------------------------------------------------------------------------- /e2e/knative/files/test-kamelet-display.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/test-kamelet-display.yaml -------------------------------------------------------------------------------- /e2e/knative/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/knative/kamelet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/kamelet_test.go -------------------------------------------------------------------------------- /e2e/knative/knative_pipes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/knative_pipes_test.go -------------------------------------------------------------------------------- /e2e/knative/knative_platform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/knative_platform_test.go -------------------------------------------------------------------------------- /e2e/knative/knative_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/knative_service_test.go -------------------------------------------------------------------------------- /e2e/knative/openapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/openapi_test.go -------------------------------------------------------------------------------- /e2e/knative/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/knative/pod_test.go -------------------------------------------------------------------------------- /e2e/native/files/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/native/files/Java.java -------------------------------------------------------------------------------- /e2e/native/files/Java2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/native/files/Java2.java -------------------------------------------------------------------------------- /e2e/native/files/Xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/native/files/Xml.xml -------------------------------------------------------------------------------- /e2e/native/files/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/native/files/yaml.yaml -------------------------------------------------------------------------------- /e2e/native/files/yaml2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/native/files/yaml2.yaml -------------------------------------------------------------------------------- /e2e/native/native_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/native/native_test.go -------------------------------------------------------------------------------- /e2e/native/native_test_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/native/native_test_support.go -------------------------------------------------------------------------------- /e2e/native/native_with_sources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/native/native_with_sources_test.go -------------------------------------------------------------------------------- /e2e/support/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/csv.go -------------------------------------------------------------------------------- /e2e/support/files/nexus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/files/nexus.yaml -------------------------------------------------------------------------------- /e2e/support/gomega_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/gomega_support.go -------------------------------------------------------------------------------- /e2e/support/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/regexp.go -------------------------------------------------------------------------------- /e2e/support/test_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/test_support.go -------------------------------------------------------------------------------- /e2e/support/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/test_util.go -------------------------------------------------------------------------------- /e2e/support/util/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/util/dump.go -------------------------------------------------------------------------------- /e2e/support/util/log_counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/util/log_counter.go -------------------------------------------------------------------------------- /e2e/support/util/log_scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/util/log_scanner.go -------------------------------------------------------------------------------- /e2e/support/util/log_walker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/util/log_walker.go -------------------------------------------------------------------------------- /e2e/support/util/structured_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/util/structured_log.go -------------------------------------------------------------------------------- /e2e/support/util/structured_log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/util/structured_log_test.go -------------------------------------------------------------------------------- /e2e/support/util/temp_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/support/util/temp_file.go -------------------------------------------------------------------------------- /e2e/telemetry/files/rest-consumer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/telemetry/files/rest-consumer.yaml -------------------------------------------------------------------------------- /e2e/telemetry/files/rest-producer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/telemetry/files/rest-producer.yaml -------------------------------------------------------------------------------- /e2e/telemetry/telemetry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/e2e/telemetry/telemetry_test.go -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/examples/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/go.sum -------------------------------------------------------------------------------- /helm/camel-k/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/.helmignore -------------------------------------------------------------------------------- /helm/camel-k/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/Chart.yaml -------------------------------------------------------------------------------- /helm/camel-k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/README.md -------------------------------------------------------------------------------- /helm/camel-k/crds/camel-k-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/crds/camel-k-crds.yaml -------------------------------------------------------------------------------- /helm/camel-k/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/camel-k/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/camel-k/templates/default-itp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/templates/default-itp.yaml -------------------------------------------------------------------------------- /helm/camel-k/templates/operator-svcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/templates/operator-svcs.yaml -------------------------------------------------------------------------------- /helm/camel-k/templates/rbacs-common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/templates/rbacs-common.yaml -------------------------------------------------------------------------------- /helm/camel-k/templates/rbacs-descoped.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/templates/rbacs-descoped.yaml -------------------------------------------------------------------------------- /helm/camel-k/templates/rbacs-namespaced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/templates/rbacs-namespaced.yaml -------------------------------------------------------------------------------- /helm/camel-k/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/helm/camel-k/values.yaml -------------------------------------------------------------------------------- /install/base/config: -------------------------------------------------------------------------------- 1 | ../../pkg/resources/config/ -------------------------------------------------------------------------------- /install/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/install/base/kustomization.yaml -------------------------------------------------------------------------------- /install/overlays/platform/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/install/overlays/platform/kustomization.yaml -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_camel_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/addtoscheme_camel_v1.go -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_keda_duck_v1alpha1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/addtoscheme_keda_duck_v1alpha1.go -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_knative_eventing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/addtoscheme_knative_eventing.go -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_knative_serving.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/addtoscheme_knative_serving.go -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/addtoscheme_monitoring.go -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_olm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/addtoscheme_olm.go -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_openshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/addtoscheme_openshift.go -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_strimzi_duck_v1beta2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/addtoscheme_strimzi_duck_v1beta2.go -------------------------------------------------------------------------------- /pkg/apis/apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/apis.go -------------------------------------------------------------------------------- /pkg/apis/camel/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/group.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/build_type_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/build_type_support_test.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/build_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/build_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/build_types_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/build_types_support.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/camelcatalog_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/camelcatalog_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/common_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/common_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/common_types_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/common_types_support.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/doc.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/error_handler_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/error_handler_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/health.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/integration_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/integration_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/integrationkit_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/integrationkit_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/jsonschema_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/jsonschema_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/kamelet_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/kamelet_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/kamelet_types_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/kamelet_types_support.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/maven_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/maven_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/maven_types_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/maven_types_support.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/pipe_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/pipe_types.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/pipe_types_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/pipe_types_support.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/pipe_types_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/pipe_types_support_test.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/register.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/affinity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/affinity.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/base.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/builder.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/camel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/camel.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/container.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/cron.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/dependencies.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/deployer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/deployer.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/deployment.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/doc.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/environment.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/error_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/error_handler.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/gc.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/health.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/ingress.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/init_containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/init_containers.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/istio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/istio.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/jolokia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/jolokia.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/jvm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/jvm.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/kamelets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/kamelets.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/keda.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/keda.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/knative.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/knative.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/logging.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/master.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/master.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/mount.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/openapi.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/owner.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/pdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/pdb.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/platform.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/pod.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/prometheus.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/pull_secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/pull_secret.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/quarkus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/quarkus.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/registry.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/route.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/service.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/support.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/telemetry.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/camel/v1/trait/toleration.go -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/zz_desc_generated.go: -------------------------------------------------------------------------------- 1 | package trait 2 | -------------------------------------------------------------------------------- /pkg/apis/camel/v1/trait/zz_generated_doc.go: -------------------------------------------------------------------------------- 1 | package trait 2 | -------------------------------------------------------------------------------- /pkg/apis/duck/keda/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/duck/keda/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/duck/keda/v1alpha1/duck_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/duck/keda/v1alpha1/duck_types.go -------------------------------------------------------------------------------- /pkg/apis/duck/keda/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/duck/keda/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/duck/strimzi/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/duck/strimzi/v1beta2/doc.go -------------------------------------------------------------------------------- /pkg/apis/duck/strimzi/v1beta2/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/apis/duck/strimzi/v1beta2/register.go -------------------------------------------------------------------------------- /pkg/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/builder.go -------------------------------------------------------------------------------- /pkg/builder/builder_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/builder_support_test.go -------------------------------------------------------------------------------- /pkg/builder/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/builder_test.go -------------------------------------------------------------------------------- /pkg/builder/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/common.go -------------------------------------------------------------------------------- /pkg/builder/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/common_test.go -------------------------------------------------------------------------------- /pkg/builder/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/git.go -------------------------------------------------------------------------------- /pkg/builder/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/git_test.go -------------------------------------------------------------------------------- /pkg/builder/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/image.go -------------------------------------------------------------------------------- /pkg/builder/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/image_test.go -------------------------------------------------------------------------------- /pkg/builder/jib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/jib.go -------------------------------------------------------------------------------- /pkg/builder/jib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/jib_test.go -------------------------------------------------------------------------------- /pkg/builder/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/project.go -------------------------------------------------------------------------------- /pkg/builder/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/project_test.go -------------------------------------------------------------------------------- /pkg/builder/quarkus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/quarkus.go -------------------------------------------------------------------------------- /pkg/builder/quarkus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/quarkus_test.go -------------------------------------------------------------------------------- /pkg/builder/runtime_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/runtime_support.go -------------------------------------------------------------------------------- /pkg/builder/s2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/s2i.go -------------------------------------------------------------------------------- /pkg/builder/steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/steps.go -------------------------------------------------------------------------------- /pkg/builder/steps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/steps_test.go -------------------------------------------------------------------------------- /pkg/builder/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/tasks.go -------------------------------------------------------------------------------- /pkg/builder/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/types.go -------------------------------------------------------------------------------- /pkg/builder/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/builder/util.go -------------------------------------------------------------------------------- /pkg/client/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/client/apply.go -------------------------------------------------------------------------------- /pkg/client/camel/listers/camel/v1/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/client/camel/listers/camel/v1/pipe.go -------------------------------------------------------------------------------- /pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/client/client.go -------------------------------------------------------------------------------- /pkg/client/fastmapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/client/fastmapper.go -------------------------------------------------------------------------------- /pkg/client/scale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/client/scale.go -------------------------------------------------------------------------------- /pkg/cmd/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/bind.go -------------------------------------------------------------------------------- /pkg/cmd/bind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/bind_test.go -------------------------------------------------------------------------------- /pkg/cmd/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/builder.go -------------------------------------------------------------------------------- /pkg/cmd/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/builder/builder.go -------------------------------------------------------------------------------- /pkg/cmd/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/builder_test.go -------------------------------------------------------------------------------- /pkg/cmd/cmd_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/cmd_support_test.go -------------------------------------------------------------------------------- /pkg/cmd/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/debug.go -------------------------------------------------------------------------------- /pkg/cmd/debug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/debug_test.go -------------------------------------------------------------------------------- /pkg/cmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/delete.go -------------------------------------------------------------------------------- /pkg/cmd/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/delete_test.go -------------------------------------------------------------------------------- /pkg/cmd/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/deploy.go -------------------------------------------------------------------------------- /pkg/cmd/deploy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/deploy_test.go -------------------------------------------------------------------------------- /pkg/cmd/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/dump.go -------------------------------------------------------------------------------- /pkg/cmd/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/get.go -------------------------------------------------------------------------------- /pkg/cmd/kit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/kit.go -------------------------------------------------------------------------------- /pkg/cmd/kit_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/kit_create.go -------------------------------------------------------------------------------- /pkg/cmd/kit_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/kit_create_test.go -------------------------------------------------------------------------------- /pkg/cmd/kit_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/kit_delete.go -------------------------------------------------------------------------------- /pkg/cmd/kit_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/kit_get.go -------------------------------------------------------------------------------- /pkg/cmd/kit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/kit_test.go -------------------------------------------------------------------------------- /pkg/cmd/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/log.go -------------------------------------------------------------------------------- /pkg/cmd/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/log_test.go -------------------------------------------------------------------------------- /pkg/cmd/modeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/modeline.go -------------------------------------------------------------------------------- /pkg/cmd/modeline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/modeline_test.go -------------------------------------------------------------------------------- /pkg/cmd/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/operator.go -------------------------------------------------------------------------------- /pkg/cmd/operator/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/operator/operator.go -------------------------------------------------------------------------------- /pkg/cmd/operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/operator_test.go -------------------------------------------------------------------------------- /pkg/cmd/promote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/promote.go -------------------------------------------------------------------------------- /pkg/cmd/promote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/promote_test.go -------------------------------------------------------------------------------- /pkg/cmd/rebuild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/rebuild.go -------------------------------------------------------------------------------- /pkg/cmd/rebuild_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/rebuild_test.go -------------------------------------------------------------------------------- /pkg/cmd/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/reset.go -------------------------------------------------------------------------------- /pkg/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/root.go -------------------------------------------------------------------------------- /pkg/cmd/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/root_test.go -------------------------------------------------------------------------------- /pkg/cmd/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/run.go -------------------------------------------------------------------------------- /pkg/cmd/run_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/run_support.go -------------------------------------------------------------------------------- /pkg/cmd/run_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/run_support_test.go -------------------------------------------------------------------------------- /pkg/cmd/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/run_test.go -------------------------------------------------------------------------------- /pkg/cmd/source/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/source/content.go -------------------------------------------------------------------------------- /pkg/cmd/source/content_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/source/content_test.go -------------------------------------------------------------------------------- /pkg/cmd/source/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/source/source.go -------------------------------------------------------------------------------- /pkg/cmd/source/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/source/util.go -------------------------------------------------------------------------------- /pkg/cmd/source/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/source/util_test.go -------------------------------------------------------------------------------- /pkg/cmd/undeploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/undeploy.go -------------------------------------------------------------------------------- /pkg/cmd/undeploy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/undeploy_test.go -------------------------------------------------------------------------------- /pkg/cmd/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/util.go -------------------------------------------------------------------------------- /pkg/cmd/util_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/util_config.go -------------------------------------------------------------------------------- /pkg/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/version.go -------------------------------------------------------------------------------- /pkg/cmd/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/cmd/version_test.go -------------------------------------------------------------------------------- /pkg/controller/add_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/add_build.go -------------------------------------------------------------------------------- /pkg/controller/add_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/add_catalog.go -------------------------------------------------------------------------------- /pkg/controller/add_integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/add_integration.go -------------------------------------------------------------------------------- /pkg/controller/add_integrationkit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/add_integrationkit.go -------------------------------------------------------------------------------- /pkg/controller/add_integrationplatform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/add_integrationplatform.go -------------------------------------------------------------------------------- /pkg/controller/add_pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/add_pipe.go -------------------------------------------------------------------------------- /pkg/controller/build/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/action.go -------------------------------------------------------------------------------- /pkg/controller/build/build_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/build_controller.go -------------------------------------------------------------------------------- /pkg/controller/build/build_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/build_monitor.go -------------------------------------------------------------------------------- /pkg/controller/build/build_pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/build_pod.go -------------------------------------------------------------------------------- /pkg/controller/build/build_pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/build_pod_test.go -------------------------------------------------------------------------------- /pkg/controller/build/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/error.go -------------------------------------------------------------------------------- /pkg/controller/build/initialize_pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/initialize_pod.go -------------------------------------------------------------------------------- /pkg/controller/build/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/log.go -------------------------------------------------------------------------------- /pkg/controller/build/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/metrics.go -------------------------------------------------------------------------------- /pkg/controller/build/monitor_pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/monitor_pod.go -------------------------------------------------------------------------------- /pkg/controller/build/monitor_routine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/monitor_routine.go -------------------------------------------------------------------------------- /pkg/controller/build/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/recovery.go -------------------------------------------------------------------------------- /pkg/controller/build/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/build/schedule.go -------------------------------------------------------------------------------- /pkg/controller/catalog/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/catalog/action.go -------------------------------------------------------------------------------- /pkg/controller/catalog/initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/catalog/initialize.go -------------------------------------------------------------------------------- /pkg/controller/catalog/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/catalog/log.go -------------------------------------------------------------------------------- /pkg/controller/catalog/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/catalog/monitor.go -------------------------------------------------------------------------------- /pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/controller.go -------------------------------------------------------------------------------- /pkg/controller/integration/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/action.go -------------------------------------------------------------------------------- /pkg/controller/integration/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/build.go -------------------------------------------------------------------------------- /pkg/controller/integration/build_kit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/build_kit.go -------------------------------------------------------------------------------- /pkg/controller/integration/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/build_test.go -------------------------------------------------------------------------------- /pkg/controller/integration/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/health.go -------------------------------------------------------------------------------- /pkg/controller/integration/health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/health_test.go -------------------------------------------------------------------------------- /pkg/controller/integration/initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/initialize.go -------------------------------------------------------------------------------- /pkg/controller/integration/kits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/kits.go -------------------------------------------------------------------------------- /pkg/controller/integration/kits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/kits_test.go -------------------------------------------------------------------------------- /pkg/controller/integration/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/log.go -------------------------------------------------------------------------------- /pkg/controller/integration/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/metrics.go -------------------------------------------------------------------------------- /pkg/controller/integration/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/monitor.go -------------------------------------------------------------------------------- /pkg/controller/integration/predicate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integration/predicate.go -------------------------------------------------------------------------------- /pkg/controller/integrationkit/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integrationkit/action.go -------------------------------------------------------------------------------- /pkg/controller/integrationkit/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integrationkit/build.go -------------------------------------------------------------------------------- /pkg/controller/integrationkit/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integrationkit/error.go -------------------------------------------------------------------------------- /pkg/controller/integrationkit/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integrationkit/log.go -------------------------------------------------------------------------------- /pkg/controller/integrationkit/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integrationkit/monitor.go -------------------------------------------------------------------------------- /pkg/controller/integrationplatform/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/integrationplatform/log.go -------------------------------------------------------------------------------- /pkg/controller/pipe/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/action.go -------------------------------------------------------------------------------- /pkg/controller/pipe/error_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/error_handler.go -------------------------------------------------------------------------------- /pkg/controller/pipe/error_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/error_handler_test.go -------------------------------------------------------------------------------- /pkg/controller/pipe/initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/initialize.go -------------------------------------------------------------------------------- /pkg/controller/pipe/initialize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/initialize_test.go -------------------------------------------------------------------------------- /pkg/controller/pipe/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/integration.go -------------------------------------------------------------------------------- /pkg/controller/pipe/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/integration_test.go -------------------------------------------------------------------------------- /pkg/controller/pipe/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/log.go -------------------------------------------------------------------------------- /pkg/controller/pipe/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/monitor.go -------------------------------------------------------------------------------- /pkg/controller/pipe/monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/monitor_test.go -------------------------------------------------------------------------------- /pkg/controller/pipe/pipe_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/pipe/pipe_controller.go -------------------------------------------------------------------------------- /pkg/controller/synthetic/synthetic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/controller/synthetic/synthetic.go -------------------------------------------------------------------------------- /pkg/event/injectable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/event/injectable.go -------------------------------------------------------------------------------- /pkg/event/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/event/manager.go -------------------------------------------------------------------------------- /pkg/install/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/install/common.go -------------------------------------------------------------------------------- /pkg/install/openshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/install/openshift.go -------------------------------------------------------------------------------- /pkg/install/optional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/install/optional.go -------------------------------------------------------------------------------- /pkg/internal/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/internal/client.go -------------------------------------------------------------------------------- /pkg/internal/fakeStatusWriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/internal/fakeStatusWriter.go -------------------------------------------------------------------------------- /pkg/internal/knative/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/internal/knative/types.go -------------------------------------------------------------------------------- /pkg/internal/knative/types_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/internal/knative/types_support.go -------------------------------------------------------------------------------- /pkg/kamelet/repository/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/kamelet/repository/common.go -------------------------------------------------------------------------------- /pkg/kamelet/repository/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/kamelet/repository/repository.go -------------------------------------------------------------------------------- /pkg/kamelet/repository/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/kamelet/repository/repository_test.go -------------------------------------------------------------------------------- /pkg/metadata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/metadata/doc.go -------------------------------------------------------------------------------- /pkg/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/metadata/metadata.go -------------------------------------------------------------------------------- /pkg/metadata/metadata_http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/metadata/metadata_http_test.go -------------------------------------------------------------------------------- /pkg/metadata/metadata_uri_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/metadata/metadata_uri_test.go -------------------------------------------------------------------------------- /pkg/metadata/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/metadata/types.go -------------------------------------------------------------------------------- /pkg/platform/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/platform/defaults.go -------------------------------------------------------------------------------- /pkg/platform/defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/platform/defaults_test.go -------------------------------------------------------------------------------- /pkg/platform/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/platform/doc.go -------------------------------------------------------------------------------- /pkg/platform/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/platform/operator.go -------------------------------------------------------------------------------- /pkg/platform/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/platform/platform.go -------------------------------------------------------------------------------- /pkg/platform/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/platform/profile.go -------------------------------------------------------------------------------- /pkg/platform/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/platform/profile_test.go -------------------------------------------------------------------------------- /pkg/resources/config/manifests/.vfsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/resources/config/manifests/.vfsignore -------------------------------------------------------------------------------- /pkg/resources/config/scorecard/.vfsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/resources/config/scorecard/.vfsignore -------------------------------------------------------------------------------- /pkg/resources/resources_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/resources/resources_support.go -------------------------------------------------------------------------------- /pkg/resources/resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/resources/resources_test.go -------------------------------------------------------------------------------- /pkg/trait/affinity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/affinity.go -------------------------------------------------------------------------------- /pkg/trait/affinity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/affinity_test.go -------------------------------------------------------------------------------- /pkg/trait/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/builder.go -------------------------------------------------------------------------------- /pkg/trait/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/builder_test.go -------------------------------------------------------------------------------- /pkg/trait/camel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/camel.go -------------------------------------------------------------------------------- /pkg/trait/camel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/camel_test.go -------------------------------------------------------------------------------- /pkg/trait/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/container.go -------------------------------------------------------------------------------- /pkg/trait/container_probes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/container_probes_test.go -------------------------------------------------------------------------------- /pkg/trait/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/container_test.go -------------------------------------------------------------------------------- /pkg/trait/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/cron.go -------------------------------------------------------------------------------- /pkg/trait/cron_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/cron_test.go -------------------------------------------------------------------------------- /pkg/trait/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/dependencies.go -------------------------------------------------------------------------------- /pkg/trait/dependencies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/dependencies_test.go -------------------------------------------------------------------------------- /pkg/trait/deployer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/deployer.go -------------------------------------------------------------------------------- /pkg/trait/deployer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/deployer_test.go -------------------------------------------------------------------------------- /pkg/trait/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/deployment.go -------------------------------------------------------------------------------- /pkg/trait/deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/deployment_test.go -------------------------------------------------------------------------------- /pkg/trait/discovery/jaeger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/discovery/jaeger.go -------------------------------------------------------------------------------- /pkg/trait/discovery/locator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/discovery/locator.go -------------------------------------------------------------------------------- /pkg/trait/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/doc.go -------------------------------------------------------------------------------- /pkg/trait/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/environment.go -------------------------------------------------------------------------------- /pkg/trait/environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/environment_test.go -------------------------------------------------------------------------------- /pkg/trait/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/gc.go -------------------------------------------------------------------------------- /pkg/trait/gc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/gc_test.go -------------------------------------------------------------------------------- /pkg/trait/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/git.go -------------------------------------------------------------------------------- /pkg/trait/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/health.go -------------------------------------------------------------------------------- /pkg/trait/health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/health_test.go -------------------------------------------------------------------------------- /pkg/trait/ingress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/ingress.go -------------------------------------------------------------------------------- /pkg/trait/ingress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/ingress_test.go -------------------------------------------------------------------------------- /pkg/trait/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/init.go -------------------------------------------------------------------------------- /pkg/trait/init_containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/init_containers.go -------------------------------------------------------------------------------- /pkg/trait/init_containers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/init_containers_test.go -------------------------------------------------------------------------------- /pkg/trait/istio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/istio.go -------------------------------------------------------------------------------- /pkg/trait/istio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/istio_test.go -------------------------------------------------------------------------------- /pkg/trait/jolokia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/jolokia.go -------------------------------------------------------------------------------- /pkg/trait/jolokia_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/jolokia_test.go -------------------------------------------------------------------------------- /pkg/trait/jvm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/jvm.go -------------------------------------------------------------------------------- /pkg/trait/jvm_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/jvm_agent.go -------------------------------------------------------------------------------- /pkg/trait/jvm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/jvm_test.go -------------------------------------------------------------------------------- /pkg/trait/kamelets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/kamelets.go -------------------------------------------------------------------------------- /pkg/trait/kamelets_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/kamelets_support.go -------------------------------------------------------------------------------- /pkg/trait/kamelets_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/kamelets_support_test.go -------------------------------------------------------------------------------- /pkg/trait/kamelets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/kamelets_test.go -------------------------------------------------------------------------------- /pkg/trait/keda.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/keda.go -------------------------------------------------------------------------------- /pkg/trait/keda_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/keda_test.go -------------------------------------------------------------------------------- /pkg/trait/knative.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/knative.go -------------------------------------------------------------------------------- /pkg/trait/knative_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/knative_service.go -------------------------------------------------------------------------------- /pkg/trait/knative_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/knative_service_test.go -------------------------------------------------------------------------------- /pkg/trait/knative_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/knative_test.go -------------------------------------------------------------------------------- /pkg/trait/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/logging.go -------------------------------------------------------------------------------- /pkg/trait/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/logging_test.go -------------------------------------------------------------------------------- /pkg/trait/master.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/master.go -------------------------------------------------------------------------------- /pkg/trait/master_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/master_test.go -------------------------------------------------------------------------------- /pkg/trait/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/mount.go -------------------------------------------------------------------------------- /pkg/trait/mount_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/mount_support.go -------------------------------------------------------------------------------- /pkg/trait/mount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/mount_test.go -------------------------------------------------------------------------------- /pkg/trait/owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/owner.go -------------------------------------------------------------------------------- /pkg/trait/owner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/owner_test.go -------------------------------------------------------------------------------- /pkg/trait/pdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/pdb.go -------------------------------------------------------------------------------- /pkg/trait/pdb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/pdb_test.go -------------------------------------------------------------------------------- /pkg/trait/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/platform.go -------------------------------------------------------------------------------- /pkg/trait/platform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/platform_test.go -------------------------------------------------------------------------------- /pkg/trait/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/pod.go -------------------------------------------------------------------------------- /pkg/trait/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/pod_test.go -------------------------------------------------------------------------------- /pkg/trait/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/prometheus.go -------------------------------------------------------------------------------- /pkg/trait/prometheus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/prometheus_test.go -------------------------------------------------------------------------------- /pkg/trait/pull_secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/pull_secret.go -------------------------------------------------------------------------------- /pkg/trait/pull_secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/pull_secret_test.go -------------------------------------------------------------------------------- /pkg/trait/quarkus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/quarkus.go -------------------------------------------------------------------------------- /pkg/trait/quarkus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/quarkus_test.go -------------------------------------------------------------------------------- /pkg/trait/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/resolver.go -------------------------------------------------------------------------------- /pkg/trait/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/route.go -------------------------------------------------------------------------------- /pkg/trait/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/route_test.go -------------------------------------------------------------------------------- /pkg/trait/security_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/security_context.go -------------------------------------------------------------------------------- /pkg/trait/security_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/security_context_test.go -------------------------------------------------------------------------------- /pkg/trait/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/service.go -------------------------------------------------------------------------------- /pkg/trait/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/service_test.go -------------------------------------------------------------------------------- /pkg/trait/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/telemetry.go -------------------------------------------------------------------------------- /pkg/trait/telemetry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/telemetry_test.go -------------------------------------------------------------------------------- /pkg/trait/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/toleration.go -------------------------------------------------------------------------------- /pkg/trait/toleration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/toleration_test.go -------------------------------------------------------------------------------- /pkg/trait/trait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait.go -------------------------------------------------------------------------------- /pkg/trait/trait_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_catalog.go -------------------------------------------------------------------------------- /pkg/trait/trait_catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_catalog_test.go -------------------------------------------------------------------------------- /pkg/trait/trait_condition_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_condition_types.go -------------------------------------------------------------------------------- /pkg/trait/trait_configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_configure.go -------------------------------------------------------------------------------- /pkg/trait/trait_configure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_configure_test.go -------------------------------------------------------------------------------- /pkg/trait/trait_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_factory.go -------------------------------------------------------------------------------- /pkg/trait/trait_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_register.go -------------------------------------------------------------------------------- /pkg/trait/trait_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_support.go -------------------------------------------------------------------------------- /pkg/trait/trait_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_support_test.go -------------------------------------------------------------------------------- /pkg/trait/trait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_test.go -------------------------------------------------------------------------------- /pkg/trait/trait_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_types.go -------------------------------------------------------------------------------- /pkg/trait/trait_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/trait_types_test.go -------------------------------------------------------------------------------- /pkg/trait/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/util.go -------------------------------------------------------------------------------- /pkg/trait/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/trait/util_test.go -------------------------------------------------------------------------------- /pkg/trait/zz_desc_generated.go: -------------------------------------------------------------------------------- 1 | package trait 2 | -------------------------------------------------------------------------------- /pkg/trait/zz_generated_doc.go: -------------------------------------------------------------------------------- 1 | package trait 2 | -------------------------------------------------------------------------------- /pkg/util/bindings/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/api.go -------------------------------------------------------------------------------- /pkg/util/bindings/api_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/api_support.go -------------------------------------------------------------------------------- /pkg/util/bindings/binding_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/binding_support_test.go -------------------------------------------------------------------------------- /pkg/util/bindings/bindings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/bindings_test.go -------------------------------------------------------------------------------- /pkg/util/bindings/camel_uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/camel_uri.go -------------------------------------------------------------------------------- /pkg/util/bindings/camel_uri_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/camel_uri_test.go -------------------------------------------------------------------------------- /pkg/util/bindings/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/catalog.go -------------------------------------------------------------------------------- /pkg/util/bindings/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/catalog_test.go -------------------------------------------------------------------------------- /pkg/util/bindings/kamelet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/kamelet.go -------------------------------------------------------------------------------- /pkg/util/bindings/kamelet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/kamelet_test.go -------------------------------------------------------------------------------- /pkg/util/bindings/knative_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/knative_ref.go -------------------------------------------------------------------------------- /pkg/util/bindings/knative_ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/knative_ref_test.go -------------------------------------------------------------------------------- /pkg/util/bindings/knative_uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/knative_uri.go -------------------------------------------------------------------------------- /pkg/util/bindings/knative_uri_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/knative_uri_test.go -------------------------------------------------------------------------------- /pkg/util/bindings/service_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/service_ref.go -------------------------------------------------------------------------------- /pkg/util/bindings/service_ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/service_ref_test.go -------------------------------------------------------------------------------- /pkg/util/bindings/strimzi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/strimzi.go -------------------------------------------------------------------------------- /pkg/util/bindings/strimzi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/bindings/strimzi_test.go -------------------------------------------------------------------------------- /pkg/util/boolean/boolean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/boolean/boolean.go -------------------------------------------------------------------------------- /pkg/util/camel/camel_dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/camel_dependencies.go -------------------------------------------------------------------------------- /pkg/util/camel/camel_dependencies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/camel_dependencies_test.go -------------------------------------------------------------------------------- /pkg/util/camel/camel_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/camel_runtime.go -------------------------------------------------------------------------------- /pkg/util/camel/camel_runtime_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/camel_runtime_catalog.go -------------------------------------------------------------------------------- /pkg/util/camel/camel_runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/camel_runtime_test.go -------------------------------------------------------------------------------- /pkg/util/camel/camel_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/camel_types.go -------------------------------------------------------------------------------- /pkg/util/camel/camel_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/camel_util.go -------------------------------------------------------------------------------- /pkg/util/camel/camel_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/camel_util_test.go -------------------------------------------------------------------------------- /pkg/util/camel/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/catalog.go -------------------------------------------------------------------------------- /pkg/util/camel/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/camel/catalog_test.go -------------------------------------------------------------------------------- /pkg/util/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/command.go -------------------------------------------------------------------------------- /pkg/util/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/command_test.go -------------------------------------------------------------------------------- /pkg/util/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/config/config.go -------------------------------------------------------------------------------- /pkg/util/defaults/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/defaults/defaults.go -------------------------------------------------------------------------------- /pkg/util/defaults/defaults_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/defaults/defaults_support.go -------------------------------------------------------------------------------- /pkg/util/defaults/defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/defaults/defaults_test.go -------------------------------------------------------------------------------- /pkg/util/digest/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/digest/digest.go -------------------------------------------------------------------------------- /pkg/util/digest/digest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/digest/digest_test.go -------------------------------------------------------------------------------- /pkg/util/dsl/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/dsl/template.go -------------------------------------------------------------------------------- /pkg/util/dsl/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/dsl/template_test.go -------------------------------------------------------------------------------- /pkg/util/envvar/envvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/envvar/envvar.go -------------------------------------------------------------------------------- /pkg/util/envvar/envvar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/envvar/envvar_test.go -------------------------------------------------------------------------------- /pkg/util/gzip/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/gzip/compress.go -------------------------------------------------------------------------------- /pkg/util/gzip/compress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/gzip/compress_test.go -------------------------------------------------------------------------------- /pkg/util/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/io/io.go -------------------------------------------------------------------------------- /pkg/util/jib/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/jib/configuration.go -------------------------------------------------------------------------------- /pkg/util/jitpack/jitpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/jitpack/jitpack.go -------------------------------------------------------------------------------- /pkg/util/jitpack/jitpack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/jitpack/jitpack_test.go -------------------------------------------------------------------------------- /pkg/util/jvm/keystore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/jvm/keystore.go -------------------------------------------------------------------------------- /pkg/util/jvm/keystore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/jvm/keystore_test.go -------------------------------------------------------------------------------- /pkg/util/knative/apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/knative/apis.go -------------------------------------------------------------------------------- /pkg/util/knative/apis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/knative/apis_test.go -------------------------------------------------------------------------------- /pkg/util/knative/enabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/knative/enabled.go -------------------------------------------------------------------------------- /pkg/util/knative/knative.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/knative/knative.go -------------------------------------------------------------------------------- /pkg/util/knative/uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/knative/uri.go -------------------------------------------------------------------------------- /pkg/util/knative/uri_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/knative/uri_test.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/camel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/camel.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/client.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/collection.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/conditions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/conditions.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/discovery.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/errors.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/factory.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/factory_test.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/loader.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/log/pod_scraper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/log/pod_scraper.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/log/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/log/util.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/lookup.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/permission.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/portforward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/portforward.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/printer.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/replace.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/sanitize.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/sanitize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/sanitize_test.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/service.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/util.go -------------------------------------------------------------------------------- /pkg/util/kubernetes/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/kubernetes/util_test.go -------------------------------------------------------------------------------- /pkg/util/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/log/log.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_command.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_command_test.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_log.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_log_test.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_project.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_project_test.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_proxies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_proxies.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_proxies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_proxies_test.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_repositories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_repositories.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_settings.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_settings_test.go -------------------------------------------------------------------------------- /pkg/util/maven/maven_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/maven/maven_types.go -------------------------------------------------------------------------------- /pkg/util/modeline/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/modeline/parser.go -------------------------------------------------------------------------------- /pkg/util/modeline/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/modeline/parser_test.go -------------------------------------------------------------------------------- /pkg/util/modeline/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/modeline/types.go -------------------------------------------------------------------------------- /pkg/util/monitoring/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/monitoring/controller.go -------------------------------------------------------------------------------- /pkg/util/monitoring/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/monitoring/register.go -------------------------------------------------------------------------------- /pkg/util/monitoring/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/monitoring/timer.go -------------------------------------------------------------------------------- /pkg/util/openshift/openshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/openshift/openshift.go -------------------------------------------------------------------------------- /pkg/util/openshift/openshift_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/openshift/openshift_test.go -------------------------------------------------------------------------------- /pkg/util/openshift/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/openshift/register.go -------------------------------------------------------------------------------- /pkg/util/patch/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/patch/patch.go -------------------------------------------------------------------------------- /pkg/util/property/property.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/property/property.go -------------------------------------------------------------------------------- /pkg/util/property/property_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/property/property_test.go -------------------------------------------------------------------------------- /pkg/util/reference/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/reference/reference.go -------------------------------------------------------------------------------- /pkg/util/reference/reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/reference/reference_test.go -------------------------------------------------------------------------------- /pkg/util/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/registry/registry.go -------------------------------------------------------------------------------- /pkg/util/resource/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/resource/config.go -------------------------------------------------------------------------------- /pkg/util/resource/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/resource/config_test.go -------------------------------------------------------------------------------- /pkg/util/s2i/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/s2i/build.go -------------------------------------------------------------------------------- /pkg/util/sets/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/sets/set.go -------------------------------------------------------------------------------- /pkg/util/sets/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/sets/set_test.go -------------------------------------------------------------------------------- /pkg/util/source/inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/inspector.go -------------------------------------------------------------------------------- /pkg/util/source/inspector_java_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/inspector_java_source.go -------------------------------------------------------------------------------- /pkg/util/source/inspector_xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/inspector_xml.go -------------------------------------------------------------------------------- /pkg/util/source/inspector_xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/inspector_xml_test.go -------------------------------------------------------------------------------- /pkg/util/source/inspector_yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/inspector_yaml.go -------------------------------------------------------------------------------- /pkg/util/source/inspector_yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/inspector_yaml_test.go -------------------------------------------------------------------------------- /pkg/util/source/kamelet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/kamelet.go -------------------------------------------------------------------------------- /pkg/util/source/kamelet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/kamelet_test.go -------------------------------------------------------------------------------- /pkg/util/source/source_support_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/source_support_test.go -------------------------------------------------------------------------------- /pkg/util/source/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/source/types.go -------------------------------------------------------------------------------- /pkg/util/sync/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/sync/file.go -------------------------------------------------------------------------------- /pkg/util/sync/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/sync/file_test.go -------------------------------------------------------------------------------- /pkg/util/tar/util_compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/tar/util_compress.go -------------------------------------------------------------------------------- /pkg/util/uri/uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/uri/uri.go -------------------------------------------------------------------------------- /pkg/util/uri/uri_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/uri/uri_test.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/util.go -------------------------------------------------------------------------------- /pkg/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/util_test.go -------------------------------------------------------------------------------- /pkg/util/watch/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/pkg/util/watch/watch.go -------------------------------------------------------------------------------- /proposals/assets/camel-k-monitoring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/proposals/assets/camel-k-monitoring.svg -------------------------------------------------------------------------------- /proposals/assets/prometheus-operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/proposals/assets/prometheus-operator.png -------------------------------------------------------------------------------- /proposals/assets/service-binding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/proposals/assets/service-binding.svg -------------------------------------------------------------------------------- /proposals/monitoring-security.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/proposals/monitoring-security.adoc -------------------------------------------------------------------------------- /proposals/provided-kamelets.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/proposals/provided-kamelets.adoc -------------------------------------------------------------------------------- /proposals/service-binding.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/proposals/service-binding.adoc -------------------------------------------------------------------------------- /release-utils/scripts/promote-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/release-utils/scripts/promote-release.sh -------------------------------------------------------------------------------- /release-utils/scripts/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/release-utils/scripts/sign.sh -------------------------------------------------------------------------------- /release-utils/scripts/upload-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/release-utils/scripts/upload-source.sh -------------------------------------------------------------------------------- /release.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/release.adoc -------------------------------------------------------------------------------- /script/.vfsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/.vfsignore -------------------------------------------------------------------------------- /script/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/Makefile -------------------------------------------------------------------------------- /script/add_createdAt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/add_createdAt.sh -------------------------------------------------------------------------------- /script/add_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/add_license.sh -------------------------------------------------------------------------------- /script/build_bundle_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/build_bundle_index.sh -------------------------------------------------------------------------------- /script/camel-k-runtime-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/camel-k-runtime-archetype/pom.xml -------------------------------------------------------------------------------- /script/check_crd_api_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/check_crd_api_support.sh -------------------------------------------------------------------------------- /script/check_licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/check_licenses.sh -------------------------------------------------------------------------------- /script/check_platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/check_platform.sh -------------------------------------------------------------------------------- /script/clone_kamelets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/clone_kamelets.sh -------------------------------------------------------------------------------- /script/cross_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/cross_compile.sh -------------------------------------------------------------------------------- /script/gen_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/gen_client.sh -------------------------------------------------------------------------------- /script/gen_crd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/gen_crd.sh -------------------------------------------------------------------------------- /script/gen_crd/gen-crd-api-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/gen_crd/gen-crd-api-config.json -------------------------------------------------------------------------------- /script/gen_crd/gen_crd_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/gen_crd/gen_crd_api.sh -------------------------------------------------------------------------------- /script/gen_crd/template/members.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/gen_crd/template/members.tpl -------------------------------------------------------------------------------- /script/gen_crd/template/pkg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/gen_crd/template/pkg.tpl -------------------------------------------------------------------------------- /script/gen_crd/template/type.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/gen_crd/template/type.tpl -------------------------------------------------------------------------------- /script/gen_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/gen_doc.sh -------------------------------------------------------------------------------- /script/gen_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/gen_helm.sh -------------------------------------------------------------------------------- /script/get_catalog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/get_catalog.sh -------------------------------------------------------------------------------- /script/git_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/git_tag.sh -------------------------------------------------------------------------------- /script/headers/default-jvm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/headers/default-jvm.txt -------------------------------------------------------------------------------- /script/headers/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/headers/default.txt -------------------------------------------------------------------------------- /script/headers/js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/headers/js.txt -------------------------------------------------------------------------------- /script/headers/sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/headers/sh.txt -------------------------------------------------------------------------------- /script/headers/xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/headers/xml.txt -------------------------------------------------------------------------------- /script/headers/yaml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/headers/yaml.txt -------------------------------------------------------------------------------- /script/images_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/images_push.sh -------------------------------------------------------------------------------- /script/maven-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/maven-settings.xml -------------------------------------------------------------------------------- /script/offline_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/offline_dependencies.sh -------------------------------------------------------------------------------- /script/package_maven_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/package_maven_artifacts.sh -------------------------------------------------------------------------------- /script/prepare-operators.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/prepare-operators.sh -------------------------------------------------------------------------------- /script/prepare_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/prepare_release.sh -------------------------------------------------------------------------------- /script/prune-camel-k-kit-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/prune-camel-k-kit-images.sh -------------------------------------------------------------------------------- /script/publish_base_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/publish_base_images.sh -------------------------------------------------------------------------------- /script/release-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/release-branch.sh -------------------------------------------------------------------------------- /script/release_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/release_helm.sh -------------------------------------------------------------------------------- /script/set_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/set_version.sh -------------------------------------------------------------------------------- /script/update_default_camel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/update_default_camel.sh -------------------------------------------------------------------------------- /script/update_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/camel-k/HEAD/script/update_docs.sh --------------------------------------------------------------------------------