mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
Remove Alpine Images From Prysm (#12749)
This commit is contained in:
parent
e7f6048b8c
commit
cda1797d4e
@ -2,7 +2,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|||||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
||||||
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
||||||
load("@io_bazel_rules_docker//container:container.bzl", "container_bundle", "container_image")
|
load("@io_bazel_rules_docker//container:container.bzl", "container_bundle", "container_image")
|
||||||
load("//tools:go_image.bzl", "go_image_alpine", "go_image_debug")
|
load("//tools:go_image.bzl", "go_image_debug")
|
||||||
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
||||||
|
|
||||||
go_library(
|
go_library(
|
||||||
@ -46,7 +46,6 @@ go_library(
|
|||||||
go_image(
|
go_image(
|
||||||
name = "image",
|
name = "image",
|
||||||
base = select({
|
base = select({
|
||||||
"//tools:base_image_alpine": "//tools:alpine_cc_image",
|
|
||||||
"//tools:base_image_cc": "//tools:cc_image",
|
"//tools:base_image_cc": "//tools:cc_image",
|
||||||
"//conditions:default": "//tools:cc_image",
|
"//conditions:default": "//tools:cc_image",
|
||||||
}),
|
}),
|
||||||
@ -93,25 +92,6 @@ container_bundle(
|
|||||||
visibility = ["//beacon-chain:__pkg__"],
|
visibility = ["//beacon-chain:__pkg__"],
|
||||||
)
|
)
|
||||||
|
|
||||||
go_image_alpine(
|
|
||||||
name = "image_alpine",
|
|
||||||
image = ":image",
|
|
||||||
tags = ["manual"],
|
|
||||||
visibility = ["//beacon-chain:__pkg__"],
|
|
||||||
)
|
|
||||||
|
|
||||||
container_bundle(
|
|
||||||
name = "image_bundle_alpine",
|
|
||||||
images = {
|
|
||||||
"gcr.io/prysmaticlabs/prysm/beacon-chain:latest-alpine": ":image_alpine",
|
|
||||||
"gcr.io/prysmaticlabs/prysm/beacon-chain:{DOCKER_TAG}-alpine": ":image_alpine",
|
|
||||||
"index.docker.io/prysmaticlabs/prysm-beacon-chain:latest-alpine": ":image_alpine",
|
|
||||||
"index.docker.io/prysmaticlabs/prysm-beacon-chain:{DOCKER_TAG}-alpine": ":image_alpine",
|
|
||||||
},
|
|
||||||
tags = ["manual"],
|
|
||||||
visibility = ["//beacon-chain:__pkg__"],
|
|
||||||
)
|
|
||||||
|
|
||||||
docker_push(
|
docker_push(
|
||||||
name = "push_images",
|
name = "push_images",
|
||||||
bundle = ":image_bundle",
|
bundle = ":image_bundle",
|
||||||
@ -126,13 +106,6 @@ docker_push(
|
|||||||
visibility = ["//beacon-chain:__pkg__"],
|
visibility = ["//beacon-chain:__pkg__"],
|
||||||
)
|
)
|
||||||
|
|
||||||
docker_push(
|
|
||||||
name = "push_images_alpine",
|
|
||||||
bundle = ":image_bundle_alpine",
|
|
||||||
tags = ["manual"],
|
|
||||||
visibility = ["//beacon-chain:__pkg__"],
|
|
||||||
)
|
|
||||||
|
|
||||||
go_binary(
|
go_binary(
|
||||||
name = "beacon-chain",
|
name = "beacon-chain",
|
||||||
embed = [":go_default_library"],
|
embed = [":go_default_library"],
|
||||||
|
@ -2,7 +2,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
|||||||
load("@prysm//tools/go:def.bzl", "go_library")
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||||||
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
||||||
load("@io_bazel_rules_docker//container:container.bzl", "container_bundle", "container_image")
|
load("@io_bazel_rules_docker//container:container.bzl", "container_bundle", "container_image")
|
||||||
load("//tools:go_image.bzl", "go_image_alpine", "go_image_debug")
|
load("//tools:go_image.bzl", "go_image_debug")
|
||||||
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
||||||
|
|
||||||
go_library(
|
go_library(
|
||||||
@ -26,7 +26,6 @@ go_library(
|
|||||||
go_image(
|
go_image(
|
||||||
name = "image",
|
name = "image",
|
||||||
base = select({
|
base = select({
|
||||||
"//tools:base_image_alpine": "//tools:alpine_cc_image",
|
|
||||||
"//tools:base_image_cc": "//tools:cc_image",
|
"//tools:base_image_cc": "//tools:cc_image",
|
||||||
"//conditions:default": "//tools:cc_image",
|
"//conditions:default": "//tools:cc_image",
|
||||||
}),
|
}),
|
||||||
@ -69,23 +68,6 @@ container_bundle(
|
|||||||
visibility = ["//cmd/prysmctl:__pkg__"],
|
visibility = ["//cmd/prysmctl:__pkg__"],
|
||||||
)
|
)
|
||||||
|
|
||||||
go_image_alpine(
|
|
||||||
name = "image_alpine",
|
|
||||||
image = ":image",
|
|
||||||
tags = ["manual"],
|
|
||||||
visibility = ["//cmd/prysmctl:__pkg__"],
|
|
||||||
)
|
|
||||||
|
|
||||||
container_bundle(
|
|
||||||
name = "image_bundle_alpine",
|
|
||||||
images = {
|
|
||||||
"gcr.io/prysmaticlabs/prysm/cmd/prysmctl:latest-alpine": ":image_alpine",
|
|
||||||
"gcr.io/prysmaticlabs/prysm/cmd/prysmctl:{DOCKER_TAG}-alpine": ":image_alpine",
|
|
||||||
},
|
|
||||||
tags = ["manual"],
|
|
||||||
visibility = ["//cmd/prysmctl:__pkg__"],
|
|
||||||
)
|
|
||||||
|
|
||||||
docker_push(
|
docker_push(
|
||||||
name = "push_images",
|
name = "push_images",
|
||||||
bundle = ":image_bundle",
|
bundle = ":image_bundle",
|
||||||
@ -100,13 +82,6 @@ docker_push(
|
|||||||
visibility = ["//cmd/prysmctl:__pkg__"],
|
visibility = ["//cmd/prysmctl:__pkg__"],
|
||||||
)
|
)
|
||||||
|
|
||||||
docker_push(
|
|
||||||
name = "push_images_alpine",
|
|
||||||
bundle = ":image_bundle_alpine",
|
|
||||||
tags = ["manual"],
|
|
||||||
visibility = ["//cmd/prysmctl:__pkg__"],
|
|
||||||
)
|
|
||||||
|
|
||||||
go_binary(
|
go_binary(
|
||||||
name = "prysmctl",
|
name = "prysmctl",
|
||||||
embed = [":go_default_library"],
|
embed = [":go_default_library"],
|
||||||
|
@ -2,7 +2,7 @@ load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|||||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
||||||
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
||||||
load("@io_bazel_rules_docker//container:container.bzl", "container_bundle", "container_image")
|
load("@io_bazel_rules_docker//container:container.bzl", "container_bundle", "container_image")
|
||||||
load("//tools:go_image.bzl", "go_image_alpine", "go_image_debug")
|
load("//tools:go_image.bzl", "go_image_debug")
|
||||||
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
||||||
|
|
||||||
go_library(
|
go_library(
|
||||||
@ -41,7 +41,6 @@ go_library(
|
|||||||
go_image(
|
go_image(
|
||||||
name = "image",
|
name = "image",
|
||||||
base = select({
|
base = select({
|
||||||
"//tools:base_image_alpine": "//tools:alpine_cc_image",
|
|
||||||
"//tools:base_image_cc": "//tools:cc_image",
|
"//tools:base_image_cc": "//tools:cc_image",
|
||||||
"//conditions:default": "//tools:cc_image",
|
"//conditions:default": "//tools:cc_image",
|
||||||
}),
|
}),
|
||||||
@ -88,25 +87,6 @@ container_bundle(
|
|||||||
visibility = ["//validator:__pkg__"],
|
visibility = ["//validator:__pkg__"],
|
||||||
)
|
)
|
||||||
|
|
||||||
go_image_alpine(
|
|
||||||
name = "image_alpine",
|
|
||||||
image = ":image",
|
|
||||||
tags = ["manual"],
|
|
||||||
visibility = ["//validator:__pkg__"],
|
|
||||||
)
|
|
||||||
|
|
||||||
container_bundle(
|
|
||||||
name = "image_bundle_alpine",
|
|
||||||
images = {
|
|
||||||
"gcr.io/prysmaticlabs/prysm/validator:latest-alpine": ":image_alpine",
|
|
||||||
"gcr.io/prysmaticlabs/prysm/validator:{DOCKER_TAG}-alpine": ":image_alpine",
|
|
||||||
"index.docker.io/prysmaticlabs/prysm-validator:latest-alpine": ":image_alpine",
|
|
||||||
"index.docker.io/prysmaticlabs/prysm-validator:{DOCKER_TAG}-alpine": ":image_alpine",
|
|
||||||
},
|
|
||||||
tags = ["manual"],
|
|
||||||
visibility = ["//validator:__pkg__"],
|
|
||||||
)
|
|
||||||
|
|
||||||
docker_push(
|
docker_push(
|
||||||
name = "push_images",
|
name = "push_images",
|
||||||
bundle = ":image_bundle",
|
bundle = ":image_bundle",
|
||||||
@ -121,13 +101,6 @@ docker_push(
|
|||||||
visibility = ["//validator:__pkg__"],
|
visibility = ["//validator:__pkg__"],
|
||||||
)
|
)
|
||||||
|
|
||||||
docker_push(
|
|
||||||
name = "push_images_alpine",
|
|
||||||
bundle = ":image_bundle_alpine",
|
|
||||||
tags = ["manual"],
|
|
||||||
visibility = ["//validator:__pkg__"],
|
|
||||||
)
|
|
||||||
|
|
||||||
go_binary(
|
go_binary(
|
||||||
name = "validator",
|
name = "validator",
|
||||||
embed = [":go_default_library"],
|
embed = [":go_default_library"],
|
||||||
|
Loading…
Reference in New Issue
Block a user