The OpenTDF Platform Service is the main entry point for the OpenTDF platform. It provides the scaffolding for running OpenTDF and ensures that all required services are configured and running as expected.
Note
It is advised to familiarize yourself with the terms and concepts used in the OpenTDF platform.
Warning
This quickstart guide is intended for development and testing purposes only. The OpenTDF platform team does not provide recommendations for production deployments.
To get started with the OpenTDF platform make sure you are running the same Go version found in the go.mod
file.
https://github.com/opentdf/platform/blob/main/service/go.mod#L3
Start the required infrastructure with compose-spec.
# Note this might be `podman compose` on some systems
docker compose -f docker-compose.yaml up
Copy the configuration file from the example and update it with your own values.
cp opentdf-example.yaml opentdf.yaml
Provision default configurations.
# Provision keycloak with the default configuration.
go run ./service provision keycloak
# Generate the temporary keys for KAS
./.github/scripts/init-temp-keys.sh
Run the OpenTDF platform service.
go run ./service start
Services are the core building block of the platform. Generally, each service is one or more gRPC services that scoped to a namespace.
- Core Services
- Health - Provides rollup health checks for the platform based on the services running.
- Well Known - Provides well-known endpoints for the platform.
- Authorization - Validates the entity has the correct entitlements based on the policy.
- Entity Resolution - Resolves entity authorization using connected services (i.e. IdP).
- Key Access (KAS) - Controls access to TDF protected content.
- Policy - Manages the policy for the TDF platform.
Our native gRPC service functions are generated from proto
definitions using Buf.
The Makefile
provides command scripts to invoke Buf
with the buf.gen.yaml
config, including OpenAPI docs, grpc docs, and the
generated code.
For convenience, the make toolcheck
script checks if you have the necessary dependencies for proto -> gRPC
generation.
To provision a custom Keycloak setup, create a yaml following the format of the sample Keycloak config. You can create different realms with separate users, clients, roles, and groups. Run the provisioning with go run ./service provision keycloak -f <path-to-your-yaml-file>
.
This guide will help you to develop a new service within the platform. The platform is focused on a modular binary architecture, so the goal of the service is isolation while also getting the benefits of a shared platform.
OpenTDF services are located under the service
directory. Each service should have a unique directory name which is
expected to relate to the service namespace.
A service namespace is a unique identifier for the service. It is used to identify the service in the platform and to enable multiple gRPC services to be rolled up into a single service.
The namespace should be a unique identifier for the service. It should be a single word, all lowercase, and should not contain any special characters. It should be the same as the directory name for the service.
Services are registered with the platform using the service.RegisterService
function. This function expects to be
be given a serviceregistry.Registration
object.
platform/service/pkg/serviceregistry/serviceregistry.go
Lines 48 to 55 in 459e82a