Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openfaas-faas
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Team Jaz CS 598 CCC Final Project
openfaas-faas
Commits
28d3e330
Commit
28d3e330
authored
7 years ago
by
Alex Ellis
Browse files
Options
Downloads
Patches
Plain Diff
Support NATS.io streaming on ARMHF
Signed-off-by:
Alex Ellis
<
alexellis2@gmail.com
>
parent
0248a5ea
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docker-compose.extended.armhf.yml
+110
-0
110 additions, 0 deletions
docker-compose.extended.armhf.yml
gateway/Dockerfile.armhf
+2
-1
2 additions, 1 deletion
gateway/Dockerfile.armhf
with
112 additions
and
1 deletion
docker-compose.extended.armhf.yml
0 → 100644
+
110
−
0
View file @
28d3e330
version
:
"
3.2"
services
:
gateway
:
volumes
:
-
"
/var/run/docker.sock:/var/run/docker.sock"
ports
:
-
8080:8080
image
:
functions/gateway:0.6.7-armhf
networks
:
-
functions
environment
:
dnsrr
:
"
true"
# Temporarily use dnsrr in place of VIP while issue persists on PWD
faas_nats_address
:
"
nats"
faas_nats_port
:
4222
# Start Add for NATS Streaming
depends_on
:
-
nats
deploy
:
restart_policy
:
condition
:
on-failure
delay
:
5s
max_attempts
:
20
window
:
380s
placement
:
constraints
:
-
'
node.role
==
manager'
-
'
node.platform.os
==
linux'
nats
:
image
:
nats-streaming:0.6.0
ports
:
-
4222:4222
-
8222:8222
command
:
"
--store
memory
--cluster_id
faas-cluster"
networks
:
-
functions
deploy
:
placement
:
constraints
:
-
'
node.platform.os
==
linux'
queue-worker
:
image
:
alexellis2/nats-queue-worker:0.1-armhf
networks
:
-
functions
deploy
:
restart_policy
:
condition
:
on-failure
delay
:
5s
max_attempts
:
20
window
:
380s
placement
:
constraints
:
-
'
node.platform.os
==
linux'
prometheus
:
image
:
alexellis2/prometheus-armhf:1.5.2
volumes
:
-
./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
-
./prometheus/alert.rules:/etc/prometheus/alert.rules
command
:
"
-config.file=/etc/prometheus/prometheus.yml
-storage.local.path=/prometheus
-storage.local.memory-chunks=10000
--alertmanager.url=http://alertmanager:9093"
ports
:
-
9090:9090
depends_on
:
-
gateway
-
alertmanager
environment
:
no_proxy
:
"
gateway"
networks
:
-
functions
deploy
:
placement
:
constraints
:
[
node.role == manager
]
alertmanager
:
image
:
alexellis2/alertmanager-armhf:0.5.1
environment
:
no_proxy
:
"
gateway"
volumes
:
-
./prometheus/alertmanager.yml:/alertmanager.yml
command
:
-
'
-config.file=/alertmanager.yml'
networks
:
-
functions
ports
:
-
9093:9093
deploy
:
placement
:
constraints
:
[
node.role == manager
]
# sample functions go here, but can be created in the UI too.
nodeinfo
:
image
:
functions/nodeinfo:latest-armhf
labels
:
function
:
"
true"
depends_on
:
-
gateway
networks
:
-
functions
environment
:
no_proxy
:
"
gateway"
https_proxy
:
$https_proxy
networks
:
functions
:
driver
:
overlay
#attachable: true
This diff is collapsed.
Click to expand it.
gateway/Dockerfile.armhf
+
2
−
1
View file @
28d3e330
...
...
@@ -10,7 +10,8 @@ COPY requests requests
COPY tests tests
COPY server.go .
COPY types types
COPY plugin plugin
COPY plugin plugin
COPY queue queue
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o gateway .
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment