-
Notifications
You must be signed in to change notification settings - Fork 26
/
metadata.mk
63 lines (49 loc) · 2.2 KB
/
metadata.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#################################################################################################
# This file contains Makefile configuration parameters and metadata for this branch.
#################################################################################################
# The version of github.com/projectcalico/go-build to use.
GO_BUILD_VER=v0.94
# Env var to ACK Ginkgo deprecation warnings, may need updating with go-build.
ACK_GINKGO=ACK_GINKGO_DEPRECATIONS=1.16.5
# Version of Kubernetes to use for tests, bitnami/kubectl, and kubectl binary release.
K8S_VERSION=v1.30.5
# Version of various tools used in the build and tests.
COREDNS_VERSION=1.5.2
ETCD_VERSION=v3.5.6
HELM_VERSION=v3.11.3
KINDEST_NODE_VERSION=v1.30.4
KIND_VERSION=v0.24.0
PROTOC_VER=v0.1
UBI_VERSION=8.10
# Configuration for Semaphore/Github integration.
ORGANIZATION = projectcalico
# Part of the git remote that is common to git and HTTP representations.
# Used to auto-detect the right remote.
ifeq ($(ORGANIZATION),tigera)
GIT_REMOTE=$(ORGANIZATION)/calico-private
else
GIT_REMOTE=$(ORGANIZATION)/calico
endif
# Configure git to access repositories using SSH.
GIT_USE_SSH = true
# The version of BIRD to use for calico/node builds and confd tests.
BIRD_VERSION=v0.3.3-211-g9111ec3c
# DEV_REGISTRIES configures the container image registries which are built from this
# repository. By default, just build images with calico/. Allow this variable to be overridden,
# as both CI/CD and the release tooling will override this to build publishable images.
DEV_REGISTRIES ?= calico
# The directory for windows image tarballs
WINDOWS_DIST = dist/windows
# FIXME: Use WINDOWS_HPC_VERSION and remove WINDOWS_VERSIONS when containerd v1.6 is EOL'd
# The Windows HPC container version used as base for Calico Windows images
WINDOWS_HPC_VERSION ?= v1.0.0
# The Windows versions used as base for Calico Windows images
WINDOWS_VERSIONS ?= 1809 ltsc2022
# The CNI plugin and flannel code that will be cloned and rebuilt with this repo's go-build image
# whenever the cni-plugin image is created.
CNI_VERSION=master
FLANNEL_VERSION=main
# The libbpf version to use
LIBBPF_VERSION=v1.4.6
# The operator branch corresponding to this branch.
OPERATOR_BRANCH=master