Revision a336ddaf0c2b090294ee4d3da59fb6ba46068cb5 authored by Marco Hofstetter on 12 May 2023, 11:22:27 UTC, committed by Joe Stringer on 15 June 2023, 16:12:00 UTC
This commit introduces the script `update-cilium-envoy-image.sh` (and
corresponding make target) which fetches the latest cilium-envoy image
by fetching the relevant data from its github repo.

It updates the cilium Dockerfile.

Signed-off-by: Marco Hofstetter <marco.hofstetter@isovalent.com>
1 parent ba9d077
Raw File
tools.go
// SPDX-License-Identifier: Apache-2.0
// Copyright 2019-2021 Authors of Cilium

//go:build tools
// +build tools

package tools

import (
	_ "github.com/cilium/customvet"
	_ "github.com/cilium/deepequal-gen"
	_ "k8s.io/code-generator"
	_ "k8s.io/code-generator/cmd/client-gen"
	_ "sigs.k8s.io/controller-tools/cmd/controller-gen"

	// Used for protobuf generation of pkg/k8s/types/slim/k8s
	_ "github.com/gogo/protobuf/gogoproto"
	_ "golang.org/x/tools/cmd/goimports"
	_ "k8s.io/code-generator/cmd/go-to-protobuf"
	_ "k8s.io/code-generator/cmd/go-to-protobuf/protoc-gen-gogo"
)
back to top