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
fd5560e9
Unverified
Commit
fd5560e9
authored
May 03, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
May 03, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #75246 from aojea/e2e_ipv6_prestop
Add IPv6 support to the nettest image
parents
a26709ec
05222658
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Dockerfile
test/images/nettest/Dockerfile
+1
-1
VERSION
test/images/nettest/VERSION
+1
-1
nettest.go
test/images/nettest/nettest.go
+1
-1
No files found.
test/images/nettest/Dockerfile
View file @
fd5560e9
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
# 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.
FROM
scratch
FROM
gcr.io/distroless/static:latest
COPY
nettest /
COPY
nettest /
EXPOSE
8080
EXPOSE
8080
ENTRYPOINT
["/nettest"]
ENTRYPOINT
["/nettest"]
test/images/nettest/VERSION
View file @
fd5560e9
1.
0
1.
1
test/images/nettest/nettest.go
View file @
fd5560e9
...
@@ -210,7 +210,7 @@ func main() {
...
@@ -210,7 +210,7 @@ func main() {
http
.
HandleFunc
(
"/write"
,
state
.
serveWrite
)
http
.
HandleFunc
(
"/write"
,
state
.
serveWrite
)
http
.
HandleFunc
(
"/status"
,
state
.
serveStatus
)
http
.
HandleFunc
(
"/status"
,
state
.
serveStatus
)
go
log
.
Fatal
(
http
.
ListenAndServe
(
fmt
.
Sprintf
(
"
0.0.0.0
:%d"
,
*
port
),
nil
))
go
log
.
Fatal
(
http
.
ListenAndServe
(
fmt
.
Sprintf
(
":%d"
,
*
port
),
nil
))
select
{}
select
{}
}
}
...
...
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