Skip to content

Commit

Permalink
Remove target reference from README.md and protoc.sh (tinkerbell#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
parauliya authored May 9, 2020
1 parent c2b0989 commit e477df9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://cloud.drone.io/api/badges/tinkerbell/tink/status.svg)](https://cloud.drone.io/tinkerbell/tink)

Tinkerbell is a bare metal provisioning and workflow engine comprised of three major components: a DHCP server ([boots](https://github.com/packethost/boots)), a workflow engine (tinkerbell, this repository), and a metadata service ([hegel](https://github.com/packethost/hegel)). The workflow engine is comprised of a server and a CLI, which communicate over gRPC. The CLI is used to create a workflow along with its building blocks, templates and targets.
Tinkerbell is a bare metal provisioning and workflow engine comprised of three major components: a DHCP server ([boots](https://github.com/packethost/boots)), a workflow engine (tinkerbell, this repository), and a metadata service ([hegel](https://github.com/packethost/hegel)). The workflow engine is comprised of a server and a CLI, which communicate over gRPC. The CLI is used to create a workflow along with its building blocks, templates and targeted hardware.

# Packet Workflow

Expand Down Expand Up @@ -31,7 +31,6 @@ provisioning workflows, that is...
- [Say "Hello-World!" with a Workflow](docs/hello-world.md)
- [Concepts](docs/concepts.md)
- [Template](docs/concepts.md#template)
- [Target](docs/concepts.md#target)
- [Provisioner](docs/concepts.md#provisioner)
- [Worker](docs/concepts.md#worker)
- [Ephemeral Data](docs/concepts.md#ephemeral-data)
Expand Down
2 changes: 1 addition & 1 deletion protos/protoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

for proto in $(echo hardware target template workflow); do
for proto in $(echo hardware template workflow); do
echo "Generating ${proto}.pb.go..."
protoc -I ./ -I ./common/ ${proto}/${proto}.proto --go_out=plugins=grpc:./
done

0 comments on commit e477df9

Please sign in to comment.