Skip to content

Commit

Permalink
Istio version 1.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eguzki committed Nov 8, 2023
1 parent af569d0 commit 8887a89
Show file tree
Hide file tree
Showing 8 changed files with 2,503 additions and 748 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ testbin
# Output of the go coverage tool, specifically when used with LiteIDE
*.out

cmd/cmd.coverprofile

# Dependency directories (remove the comment below to include it)
# vendor/

Expand Down
11 changes: 6 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@ help: Makefile
# Kind tool
KIND = $(PROJECT_PATH)/bin/kind
KIND_CLUSTER_NAME = kuadrant-local
KIND_VERSION = v0.20.0
$(KIND):
$(call go-get-tool,$(KIND),sigs.k8s.io/kind@v0.11.1)
$(call go-install-tool,$(KIND),sigs.k8s.io/kind@$(KIND_VERSION))

.PHONY : kind
kind: $(KIND)
.PHONY: kind
kind: $(KIND) ## Download kind locally if necessary.

# istioctl tool
ISTIOCTL=$(PROJECT_PATH)/bin/istioctl
ISTIOVERSION = 1.12.1
ISTIOVERSION = 1.17.2
$(ISTIOCTL):
mkdir -p $(PROJECT_PATH)/bin
$(eval TMP := $(shell mktemp -d))
Expand All @@ -38,7 +39,7 @@ istioctl: $(ISTIOCTL)
# Ginkgo tool
GINKGO = $(PROJECT_PATH)/bin/ginkgo
$(GINKGO):
$(call go-get-tool,$(GINKGO),github.com/onsi/ginkgo/[email protected])
$(call go-install-tool,$(GINKGO),github.com/onsi/ginkgo/[email protected])

## test: Run unit tests
.PHONY : test
Expand Down
12 changes: 9 additions & 3 deletions doc/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@
## Technology stack required for development

* [git][git_tool]
* [go] version 1.16+
* [go] version 1.20+

## Build the CLI
```
$ git clone https://github.com/kuadrant/kuadrantctl.git
$ cd kuadrantctl && make install
$ kuadrantctl version
0.0.1
$ bin/kuadrantctl version
{"level":"info","ts":1699437585.7809818,"msg":"kuadrantctl version: latest"}
{"level":"info","ts":1699437585.7941456,"msg":"Istio version: docker.io/istio/pilot:1.12.1"}
{"level":"info","ts":1699437585.798138,"msg":"Authorino operator version: quay.io/3scale/authorino-operator:latest"}
{"level":"info","ts":1699437585.798147,"msg":"Authorino version: quay.io/3scale/authorino:v0.7.0"}
{"level":"info","ts":1699437585.7990465,"msg":"Limitador operator version: quay.io/kuadrant/limitador-operator:main"}
{"level":"info","ts":1699437585.799057,"msg":"Limitador version: 0.4.0"}
{"level":"info","ts":1699437585.8007147,"msg":"Kuadrant controller version: quay.io/kuadrant/kuadrant-controller:main"}
```

## Quick steps to contribute
Expand Down
Loading

0 comments on commit 8887a89

Please sign in to comment.