Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
8bdb6763
Commit
8bdb6763
authored
Apr 11, 2018
by
Jeff Grafton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add pointer comments
parent
b2f8cf1b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
1 deletion
+8
-1
bindata.bzl
build/bindata.bzl
+2
-1
generate-bindata.sh
hack/generate-bindata.sh
+4
-0
BUILD
pkg/generated/BUILD
+1
-0
BUILD
test/e2e/generated/BUILD
+1
-0
No files found.
build/bindata.bzl
View file @
8bdb6763
...
@@ -12,7 +12,8 @@
...
@@ -12,7 +12,8 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# genrule wrapper around the go-bindata utility.
# Genrule wrapper around the go-bindata utility.
# IMPORTANT: Any changes to this rule may also require changes to hack/generate-bindata.sh.
def go_bindata(
def go_bindata(
name, srcs, outs,
name, srcs, outs,
compress=True,
compress=True,
...
...
hack/generate-bindata.sh
View file @
8bdb6763
...
@@ -41,6 +41,8 @@ pushd "${KUBE_ROOT}" >/dev/null
...
@@ -41,6 +41,8 @@ pushd "${KUBE_ROOT}" >/dev/null
# These are files for e2e tests.
# These are files for e2e tests.
BINDATA_OUTPUT
=
"test/e2e/generated/bindata.go"
BINDATA_OUTPUT
=
"test/e2e/generated/bindata.go"
# IMPORTANT: if you make any changes to these arguments, you must also update
# test/e2e/generated/BUILD and/or build/bindata.bzl.
go-bindata
-nometadata
-o
"
${
BINDATA_OUTPUT
}
.tmp"
-pkg
generated
\
go-bindata
-nometadata
-o
"
${
BINDATA_OUTPUT
}
.tmp"
-pkg
generated
\
-ignore
.jpg
-ignore
.png
-ignore
.md
-ignore
'BUILD(\.bazel)?'
\
-ignore
.jpg
-ignore
.png
-ignore
.md
-ignore
'BUILD(\.bazel)?'
\
"test/e2e/testing-manifests/..."
\
"test/e2e/testing-manifests/..."
\
...
@@ -63,6 +65,8 @@ rm -f "${BINDATA_OUTPUT}.tmp"
...
@@ -63,6 +65,8 @@ rm -f "${BINDATA_OUTPUT}.tmp"
# These are files for runtime code
# These are files for runtime code
BINDATA_OUTPUT
=
"pkg/generated/bindata.go"
BINDATA_OUTPUT
=
"pkg/generated/bindata.go"
# IMPORTANT: if you make any changes to these arguments, you must also update
# pkg/generated/BUILD and/or build/bindata.bzl.
go-bindata
-nometadata
-nocompress
-o
"
${
BINDATA_OUTPUT
}
.tmp"
-pkg
generated
\
go-bindata
-nometadata
-nocompress
-o
"
${
BINDATA_OUTPUT
}
.tmp"
-pkg
generated
\
-ignore
.jpg
-ignore
.png
-ignore
.md
-ignore
'BUILD(\.bazel)?'
\
-ignore
.jpg
-ignore
.png
-ignore
.md
-ignore
'BUILD(\.bazel)?'
\
"translations/..."
"translations/..."
...
...
pkg/generated/BUILD
View file @
8bdb6763
...
@@ -6,6 +6,7 @@ load(
...
@@ -6,6 +6,7 @@ load(
)
)
load("//build:bindata.bzl", "go_bindata")
load("//build:bindata.bzl", "go_bindata")
# IMPORTANT: if you make any changes here, you must also update hack/generate-bindata.sh.
go_bindata(
go_bindata(
name = "bindata",
name = "bindata",
srcs = [
srcs = [
...
...
test/e2e/generated/BUILD
View file @
8bdb6763
...
@@ -19,6 +19,7 @@ go_library(
...
@@ -19,6 +19,7 @@ go_library(
],
],
)
)
# IMPORTANT: if you make any changes here, you must also update hack/generate-bindata.sh.
go_bindata(
go_bindata(
name = "bindata",
name = "bindata",
srcs = [
srcs = [
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment