This repository has been archived by the owner on Oct 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 693
/
image.bzl
138 lines (124 loc) · 4.79 KB
/
image.bzl
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# Copyright 2017 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A rule for creating a Go container image.
The signature of this rule is compatible with go_binary.
"""
# It is expected that the Go rules have been properly
# initialized before loading this file to initialize
# go_image.
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
load(
"//container:container.bzl",
"container_pull",
)
load(
"//lang:image.bzl",
"app_layer",
)
load(
"//repositories:go_repositories.bzl",
_go_deps = "go_deps",
)
# Load the resolved digests.
load(":go.bzl", BASE_DIGESTS = "DIGESTS")
load(":static.bzl", STATIC_DIGESTS = "DIGESTS")
def repositories():
"""Import the dependencies of the go_image rule.
Call the core "go_deps" function to reduce boilerplate. This is
idempotent if folks call it themselves.
"""
_go_deps()
excludes = native.existing_rules().keys()
if "go_image_base" not in excludes:
container_pull(
name = "go_image_base",
registry = "gcr.io",
repository = "distroless/base",
digest = BASE_DIGESTS["latest"],
)
if "go_debug_image_base" not in excludes:
container_pull(
name = "go_debug_image_base",
registry = "gcr.io",
repository = "distroless/base",
digest = BASE_DIGESTS["debug"],
)
if "go_image_static" not in excludes:
container_pull(
name = "go_image_static",
registry = "gcr.io",
repository = "distroless/static",
digest = STATIC_DIGESTS["latest"],
)
if "go_debug_image_static" not in excludes:
container_pull(
name = "go_debug_image_static",
registry = "gcr.io",
repository = "distroless/static",
digest = STATIC_DIGESTS["debug"],
)
DEFAULT_BASE = select({
"@io_bazel_rules_docker//:debug": "@go_debug_image_base//image",
"@io_bazel_rules_docker//:fastbuild": "@go_image_base//image",
"@io_bazel_rules_docker//:optimized": "@go_image_base//image",
"//conditions:default": "@go_image_base//image",
})
STATIC_DEFAULT_BASE = select({
"@io_bazel_rules_docker//:debug": "@go_debug_image_static//image",
"@io_bazel_rules_docker//:fastbuild": "@go_image_static//image",
"@io_bazel_rules_docker//:optimized": "@go_image_static//image",
"//conditions:default": "@go_image_static//image",
})
def go_image(name, base = None, deps = [], layers = [], env = {}, binary = None, architecture = None, **kwargs):
"""Constructs a container image wrapping a go_binary target.
Args:
name: Name of the go_image target.
base: Base image to use to build the go_image.
deps: Dependencies of the go image target.
layers: Augments "deps" with dependencies that should be put into their own layers.
env: Environment variables for the go_image.
binary: An alternative binary target to use instead of generating one.
architecture: The target architecture.
**kwargs: See go_binary.
"""
if layers:
print("go_image does not benefit from layers=[], got: %s" % layers)
if not binary:
binary = name + ".binary"
go_binary(name = binary, deps = deps + layers, **kwargs)
elif deps:
fail("kwarg does nothing when binary is specified", "deps")
if not base:
base = STATIC_DEFAULT_BASE if kwargs.get("pure") == "on" else DEFAULT_BASE
tags = kwargs.get("tags", None)
for index, dep in enumerate(layers):
base = app_layer(name = "%s.%d" % (name, index), base = base, dep = dep, tags = tags, architecture = architecture)
base = app_layer(name = "%s.%d-symlinks" % (name, index), base = base, dep = dep, binary = binary, tags = tags, architecture = architecture)
visibility = kwargs.get("visibility", None)
restricted_to = kwargs.get("restricted_to", None)
compatible_with = kwargs.get("compatible_with", None)
app_layer(
name = name,
base = base,
env = env,
binary = binary,
visibility = visibility,
tags = tags,
args = kwargs.get("args"),
data = kwargs.get("data"),
testonly = kwargs.get("testonly"),
restricted_to = restricted_to,
compatible_with = compatible_with,
architecture = architecture,
)