mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 08:46:48 +00:00
Make webhookstash a static binary
This commit is contained in:
parent
2575ef407d
commit
ee95e272cc
@ -21,7 +21,7 @@ echo
|
|||||||
function test_function_output {
|
function test_function_output {
|
||||||
for i in {1..100}
|
for i in {1..100}
|
||||||
do
|
do
|
||||||
out=$(curl -s localhost:8080/function/$1 -d "$2")
|
out=$(curl --fail -s localhost:8080/function/$1 -d "$2")
|
||||||
echo $out
|
echo $out
|
||||||
if [ "$out" == "$3" ]
|
if [ "$out" == "$3" ]
|
||||||
then
|
then
|
||||||
@ -41,7 +41,7 @@ echo
|
|||||||
function test_function {
|
function test_function {
|
||||||
for i in {1..100}
|
for i in {1..100}
|
||||||
do
|
do
|
||||||
curl localhost:8080/function/$1 -d "$2"
|
curl -s --fail localhost:8080/function/$1 -d "$2"
|
||||||
if [ ! 0 -eq $? ]
|
if [ ! 0 -eq $? ]
|
||||||
then
|
then
|
||||||
echo "Service $1 not ready"
|
echo "Service $1 not ready"
|
||||||
@ -58,7 +58,7 @@ echo
|
|||||||
|
|
||||||
function create_function {
|
function create_function {
|
||||||
echo "Creating function: " $1
|
echo "Creating function: " $1
|
||||||
curl -s localhost:8080/system/functions -d "$1"
|
curl -s --fail localhost:8080/system/functions -d "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
test_gateway
|
test_gateway
|
||||||
|
@ -34,7 +34,6 @@ services:
|
|||||||
placement:
|
placement:
|
||||||
constraints: [node.role == manager]
|
constraints: [node.role == manager]
|
||||||
|
|
||||||
|
|
||||||
alertmanager:
|
alertmanager:
|
||||||
image: quay.io/prometheus/alertmanager
|
image: quay.io/prometheus/alertmanager
|
||||||
environment:
|
environment:
|
||||||
@ -55,7 +54,7 @@ services:
|
|||||||
|
|
||||||
# Service label of "function" allows functions to show up in UI on http://gateway:8080/
|
# Service label of "function" allows functions to show up in UI on http://gateway:8080/
|
||||||
webhookstash:
|
webhookstash:
|
||||||
image: alexellis2/faas-webhookstash:latest
|
image: functions/webhookstash:latest
|
||||||
labels:
|
labels:
|
||||||
function: "true"
|
function: "true"
|
||||||
depends_on:
|
depends_on:
|
||||||
|
1
sample-functions/WebhookStash/.gitignore
vendored
Normal file
1
sample-functions/WebhookStash/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
app
|
@ -1,15 +1,16 @@
|
|||||||
FROM golang:1.7.5
|
FROM alpine:latest
|
||||||
RUN mkdir -p /go/src/app
|
|
||||||
COPY handler.go /go/src/app
|
|
||||||
WORKDIR /go/src/app
|
|
||||||
RUN go get -d -v
|
|
||||||
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
|
|
||||||
|
|
||||||
|
WORKDIR /root/
|
||||||
|
|
||||||
ADD https://github.com/alexellis/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
EXPOSE 8080
|
||||||
|
ENV http_proxy ""
|
||||||
|
ENV https_proxy ""
|
||||||
|
|
||||||
|
ADD https://github.com/alexellis/faas/releases/download/v0.5-alpha/fwatchdog /usr/bin
|
||||||
RUN chmod +x /usr/bin/fwatchdog
|
RUN chmod +x /usr/bin/fwatchdog
|
||||||
# COPY fwatchdog /usr/bin/
|
# COPY fwatchdog /usr/bin/
|
||||||
|
|
||||||
ENV fprocess="/go/src/app/app"
|
COPY app .
|
||||||
|
|
||||||
|
ENV fprocess="/root/app"
|
||||||
CMD ["fwatchdog"]
|
CMD ["fwatchdog"]
|
||||||
|
9
sample-functions/WebhookStash/Dockerfile.build
Normal file
9
sample-functions/WebhookStash/Dockerfile.build
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
FROM golang:1.7.5
|
||||||
|
|
||||||
|
RUN mkdir -p /go/src/app
|
||||||
|
COPY handler.go /go/src/app
|
||||||
|
WORKDIR /go/src/app
|
||||||
|
RUN go get -d -v
|
||||||
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
|
||||||
|
|
||||||
|
CMD ["/bin/true"]
|
@ -1,3 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
|
echo Building functions/webhookstash:build
|
||||||
|
|
||||||
docker build -t alexellis2/faas-webhookstash .
|
docker build --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -t functions/webhookstash:build . -f Dockerfile.build && \
|
||||||
|
docker create --name hook_extract functions/webhookstash:build
|
||||||
|
docker cp hook_extract:/go/src/app/app ./app
|
||||||
|
docker rm -f hook_extract
|
||||||
|
|
||||||
|
echo Building functions/webhookstash:latest
|
||||||
|
docker build --no-cache -t functions/webhookstash:latest .
|
||||||
|
Loading…
x
Reference in New Issue
Block a user