Skip to content

Commit 8cce858

Browse files
committed
Move namespace to openfaas
This component has been moved into the main openfaas namespace Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent c796e1b commit 8cce858

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CGO_ENABLED=0
44
ARG GO111MODULE="off"
55
ARG GOPROXY=""
66

7-
WORKDIR /go/src/github.com/openfaas-incubator/of-watchdog
7+
WORKDIR /go/src/github.com/openfaas/of-watchdog
88

99
COPY vendor vendor
1010
COPY config config

Dockerfile.packager

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ FROM scratch
33

44
ARG PLATFORM
55

6-
COPY --from=build /go/src/github.com/openfaas-incubator/of-watchdog/of-watchdog$PLATFORM ./fwatchdog
6+
COPY --from=build /go/src/github.com/openfaas/of-watchdog/of-watchdog$PLATFORM ./fwatchdog

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 openfaas-incubator
3+
Copyright (c) 2017 openfaas
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# of-watchdog
22

3-
[![Go Report Card](https://goreportcard.com/badge/github.com/openfaas-incubator/of-watchdog)](https://goreportcard.com/report/github.com/openfaas-incubator/of-watchdog) [![Build Status](https://travis-ci.org/openfaas-incubator/of-watchdog.svg?branch=master)](https://travis-ci.org/openfaas-incubator/of-watchdog)
3+
[![Go Report Card](https://goreportcard.com/badge/github.com/openfaas/of-watchdog)](https://goreportcard.com/report/github.com/openfaas/of-watchdog) [![Build Status](https://travis-ci.org/openfaas/of-watchdog.svg?branch=master)](https://travis-ci.org/openfaas/of-watchdog)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
55
[![OpenFaaS](https://img.shields.io/badge/openfaas-serverless-blue.svg)](https://www.openfaas.com)
66

@@ -31,13 +31,12 @@ The following templates have been available for testing:
3131

3232
| Template | HTTP framework | Repo |
3333
|------------------------|---------------------|--------------------------------------------------------------------|
34-
| Node.js 8 | Express.js | https://github.com/openfaas-incubator/node8-express-template |
35-
| Node.js 10 (LTS) | Express.js | https://github.com/openfaas-incubator/node10-express-template |
34+
| Node.js 12 (LTS) | Express.js | https://github.com/openfaas/templates/ |
3635
| Python 3 & 2.7 | Flask | https://github.com/openfaas-incubator/python-flask-template |
3736
| Golang | Go HTTP (stdlib) | https://github.com/openfaas-incubator/golang-http-template |
3837
| Golang | (http.HandlerFunc) | https://github.com/openfaas-incubator/golang-http-template |
3938
| Ruby | Sinatra | https://github.com/openfaas-incubator/ruby-http |
40-
| Java 8 | Sun HTTP / Maven | https://github.com/openfaas/templates/ |
39+
| Java 11 | Sun HTTP / Gradle | https://github.com/openfaas/templates/ |
4140

4241
Unofficial: [.NET Core / C# and Kestrel](https://github.com/burtonr/csharp-kestrel-template)
4342

build.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ docker build --no-cache --build-arg PLATFORM="" -t openfaas/of-watchdog:latest-d
1515

1616
docker create --name buildoutput openfaas/of-watchdog:build echo
1717

18-
docker cp buildoutput:/go/src/github.com/openfaas-incubator/of-watchdog/of-watchdog ./of-watchdog
19-
docker cp buildoutput:/go/src/github.com/openfaas-incubator/of-watchdog/of-watchdog-darwin ./of-watchdog-darwin
20-
docker cp buildoutput:/go/src/github.com/openfaas-incubator/of-watchdog/of-watchdog-armhf ./of-watchdog-armhf
21-
docker cp buildoutput:/go/src/github.com/openfaas-incubator/of-watchdog/of-watchdog-arm64 ./of-watchdog-arm64
22-
docker cp buildoutput:/go/src/github.com/openfaas-incubator/of-watchdog/of-watchdog.exe ./of-watchdog.exe
18+
docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog ./of-watchdog
19+
docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog-darwin ./of-watchdog-darwin
20+
docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog-armhf ./of-watchdog-armhf
21+
docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog-arm64 ./of-watchdog-arm64
22+
docker cp buildoutput:/go/src/github.com/openfaas/of-watchdog/of-watchdog.exe ./of-watchdog.exe
2323

2424
docker rm buildoutput

main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ import (
1616
"syscall"
1717
"time"
1818

19-
"github.com/openfaas-incubator/of-watchdog/config"
20-
"github.com/openfaas-incubator/of-watchdog/executor"
21-
"github.com/openfaas-incubator/of-watchdog/metrics"
2219
limiter "github.com/openfaas/faas-middleware/concurrency-limiter"
20+
"github.com/openfaas/of-watchdog/config"
21+
"github.com/openfaas/of-watchdog/executor"
22+
"github.com/openfaas/of-watchdog/metrics"
2323
)
2424

2525
var (

0 commit comments

Comments
 (0)