Skip to content

The gRPC/http metadata service for Tinkerbell.

License

Notifications You must be signed in to change notification settings

packethost/hegel-1

This branch is 567 commits behind tinkerbell/hegel:main.

Folders and files

NameName
Last commit message
Last commit date
Oct 28, 2020
Jun 22, 2020
Mar 19, 2020
Aug 20, 2020
Sep 1, 2020
Oct 28, 2020
Mar 19, 2020
Mar 19, 2020
Mar 19, 2020
Jun 22, 2020
Sep 17, 2020
Oct 28, 2020
Mar 19, 2020
Sep 21, 2020
Sep 21, 2020
Sep 4, 2020
Sep 4, 2020
Aug 20, 2020
Aug 20, 2020
Aug 20, 2020
Sep 1, 2020
Sep 1, 2020
Sep 1, 2020
Jun 22, 2020
Aug 31, 2020
Mar 19, 2020

Repository files navigation

Build Status

This repository is Experimental meaning that it's based on untested ideas or techniques and not yet established or finalized or involves a radically new and innovative style! This means that support is best effort (at best!) and we strongly encourage you to NOT use this in production.

Hegel

The gRPC and HTTP metadata service for Tinkerbell. Subscribe to changes in metadata, get notified when data is added/removed, etc.

Full documentation can be found at tinkerbell.org

Notes

protoc -I ./protos/hegel ./protos/hegel/hegel.proto --go_out=plugins=grpc:./protos/hegel

Self-Signed Certificates

To use Hegel with TLS certificates:

mkdir ./certs
openssl genrsa -des3 -passout pass:x -out ./certs/server.pass.key 2048
openssl rsa -passin pass:x -in ./certs/server.pass.key -out ./certs/server.key
openssl req -new -key ./certs/server.key -out ./certs/server.csr
openssl x509 -req -sha256 -days 365 -in ./certs/server.csr -signkey ./certs/server.key -out ./certs/server.crt
export HEGEL_TLS_CERT=./certs/server.crt
export HEGEL_TLS_KEY=./certs/server.key
go run main.go

About

The gRPC/http metadata service for Tinkerbell.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 99.3%
  • Other 0.7%