Skip to content

Commit

Permalink
Merge pull request #11762 from kumahq/chore/merge-release-to-master
Browse files Browse the repository at this point in the history
chore(merge): release-2.9 branch to master
  • Loading branch information
lahabana authored Oct 11, 2024
2 parents 69d3ab3 + 29bcd43 commit 60c64cd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ permissions:
env:
CI_TOOLS_DIR: "/home/runner/work/kuma/kuma/.ci_tools"
# This is automatically managed by CI
K8S_MIN_VERSION: v1.23.17-k3s1
K8S_MAX_VERSION: v1.30.0-k3s1
K8S_MIN_VERSION: v1.25.16-k3s4
K8S_MAX_VERSION: v1.31.1-k3s1
jobs:
test_unit:
timeout-minutes: 20
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/merge-release-to-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
run: |
echo "branch=$(make dev/print-latest-release-branch)" >> $GITHUB_OUTPUT
- run: |
make dev/merge-release
if [[ "refs/heads/${{ steps.latest-branch.outputs.branch }}" == "${{ github.ref }}" ]]; then
make dev/merge-release
fi
- id: commit-changes
run: |
git status
Expand Down
2 changes: 1 addition & 1 deletion mk/dependencies/deps.lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
85edd35bf66665ac4e9f4fd54fdd06d202a510c3
7ad8c624b09ea67fdb958f723c6dacf2be3d6bab
2 changes: 1 addition & 1 deletion mk/dependencies/k3d.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

OUTPUT_DIR=$1/bin
VERSION="5.6.0"
VERSION="5.7.4"
# see https://raw.githubusercontent.com/rancher/k3d/main/install.sh
curl --fail --location -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | \
PATH=${OUTPUT_DIR}:${PATH} TAG=v${VERSION} USE_SUDO="false" K3D_INSTALL_DIR="${OUTPUT_DIR}" bash
4 changes: 2 additions & 2 deletions mk/dev.mk
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ CI_TOOLS_BIN_DIR=$(CI_TOOLS_DIR)/bin
# Change here and `make check` ensures these are used for CI
# Note: These are _docker image tags_
# If changing min version, update mk/kind.mk as well
K8S_MIN_VERSION = v1.23.17-k3s1
K8S_MAX_VERSION = v1.30.0-k3s1
K8S_MIN_VERSION = v1.25.16-k3s4
K8S_MAX_VERSION = v1.31.1-k3s1
export GO_VERSION=$(shell go mod edit -json | jq -r .Go)
export GOLANGCI_LINT_VERSION=v1.60.3
GOOS := $(shell go env GOOS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (r *Graph) CanReach(fromTags map[string]string, toTags map[string]string) b
}

func (r *Graph) CanReachBackend(fromTags map[string]string, backendIdentifier core_model.TypedResourceIdentifier) bool {
if backendIdentifier.ResourceType == core_model.ResourceType(common_api.MeshExternalService) {
if backendIdentifier.ResourceType == core_model.ResourceType(common_api.MeshExternalService) || backendIdentifier.ResourceType == core_model.ResourceType(common_api.MeshMultiZoneService) {
return true
}
noPort := core_model.TypedResourceIdentifier{
Expand Down

0 comments on commit 60c64cd

Please sign in to comment.