...
1# Copyright 2023 The cert-manager Authors.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15images_amd64 ?=
16images_arm64 ?=
17
18kind_k8s_version := v1.29.0
19
20# Goto https://github.com/kubernetes-sigs/kind/releases/tag/<KIND-VERSION> and find the
21# multi-arch digest for the image you want to use. Then use crane to get the platform
22# specific digest. For example (digest is the multi-arch digest from the release page):
23# digest="sha256:eaa1450915475849a73a9227b8f201df25e55e268e5d619312131292e324d570"
24# crane digest --platform=linux/amd64 docker.io/kindest/node@$digest
25# crane digest --platform=linux/arm64 docker.io/kindest/node@$digest
26
27images_amd64 += docker.io/kindest/node:$(kind_k8s_version)@sha256:54a50c9354f11ce0aa56a85d2cacb1b950f85eab3fe1caf988826d1f89bf37eb
28images_arm64 += docker.io/kindest/node:$(kind_k8s_version)@sha256:8ccbd8bc4d52c467f3c79eeeb434827c225600a1d7385a4b1c19d9e038c9e0c0
View as plain text