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
fd74d03f
Commit
fd74d03f
authored
Mar 02, 2015
by
Matthew Farrellee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add nimbus service to README
parent
c173a958
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
README.md
examples/storm/README.md
+37
-0
No files found.
examples/storm/README.md
View file @
fd74d03f
...
@@ -60,6 +60,43 @@ $ echo ruok | nc 10.254.139.141 2181; echo
...
@@ -60,6 +60,43 @@ $ echo ruok | nc 10.254.139.141 2181; echo
imok
imok
```
```
## Step Two: Start your Nimbus service
The Nimbus service is the master (or head) service for a Storm
cluster. It depends on a functional ZooKeeper service.
Use the
`examples/storm/storm-nimbus.json`
file to create a pod running
the Nimbus service.
```
shell
$
kubectl create
-f
examples/storm/storm-nimbus.json
```
Then, use the
`examples/storm/storm-nimbus-service.json`
file to
create a logical service endpoint that Storm workers can use to access
the Nimbus pod.
```
shell
$
kubectl create
-f
examples/storm/storm-nimbus-service.json
```
Ensure that the Nimbus service is running and functional.
### Check to see if Nimbus is running and accessible
```
shell
$
kubectl get services
NAME LABELS SELECTOR IP PORT
kubernetes
component
=
apiserver,provider
=
kubernetes <none> 10.254.0.2 443
kubernetes-ro
component
=
apiserver,provider
=
kubernetes <none> 10.254.0.1 80
nimbus
name
=
nimbus
name
=
nimbus 10.254.115.208 6627
zookeeper
name
=
zookeeper
name
=
zookeeper 10.254.139.141 2181
$
sudo
docker run
-it
-w
/opt/apache-storm mattf/storm-base sh
-c
'/configure.sh 10.254.139.141 10.254.115.208; ./bin/storm list'
...
No topologies running.
```
## tl;dr
## tl;dr
```
kubectl create -f zookeeper.json```
```
kubectl create -f zookeeper.json```
...
...
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