Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: KaotoIO/kaoto-operator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.17
Choose a base ref
...
head repository: KaotoIO/kaoto-operator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 72 additions and 85 deletions.
  1. +1 −1 Dockerfile
  2. +4 −4 README.md
  3. +2 −2 config/manifests/bases/kaoto-operator.clusterserviceversion.yaml
  4. +21 −25 go.mod
  5. +44 −53 go.sum
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.22 as builder
FROM golang:1.23 as builder

ARG TARGETOS
ARG TARGETARCH
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
<a href="https://kaoto.io"><img src="https://img.shields.io/badge/Kaoto.io-Visit-white?color=indigo&style=for-the-badge" alt="Zulip"/></a>
</p><br/>

<h2 align="center">Visual Editor for <a href="https://camel.apache.org">Apache Camel</a></h2>
<h2 align="center">Kaoto - The Integration Designer for <a href="https://camel.apache.org">Apache Camel</a></h2>

<p align="center">
<a href="https://kaoto.io/docs/installation">Documentation</a> |
@@ -35,8 +35,8 @@ Multiresource yaml files to deploy to plain kubernetes.
### Plain Kubernetes (Minikube)
- Install and run a Minikube instance with `ingress` addon enabled.
- Install Kaoto from the multi-resource yaml
```kubectl apply -k https://github.com/KaotoIO/kaoto-operator//config/standalone```
- this will create `kaoto-system` namespace and install Kaoto Operatorand
```kubectl apply -k https://github.com/KaotoIO/kaoto-operator/config/standalone```
- this will create `kaoto-system` namespace and install Kaoto Operator
- Create sample Kaoto CR
```kubectl apply -f https://raw.githubusercontent.com/KaotoIO/kaoto-operator/main/config/samples/designer.yaml```
- Waith the the ingrees admits the endoint
@@ -54,7 +54,7 @@ Multiresource yaml files to deploy to plain kubernetes.
## Local development

### Run Operator inside the cluster
1. Start minikube win ingress controller enabled: `minikube start --addons ingress`
1. Start minikube with ingress controller enabled: `minikube start --addons ingress`
2. Point docker to minikube internal registry: `eval $(minikube -p minikube docker-env)`
3. Build the Operator: `make build`
4. Build the Operator Image: `make docker-build`
Loading