Skip to main content

Module: @purista/k8s-sdk


PURISTA API / Modules / @purista/k8s-sdk

Module: @purista/k8s-sdk

SDK and helper to run PURISTA services in Kubernetes.

Here is a full example, how the index file might look like, if you want to deploy a service to Kubernetes.

Example

// src/index.ts
import { serve } from '@hono/node-server'
import { OTLPTraceExporter } from '@opentelemetry/exporter-trace-otlp-http'
import { SimpleSpanProcessor } from '@opentelemetry/sdk-trace-base'
import {
  DefaultConfigStore,
  DefaultEventBridge,
  DefaultSecretStore,
  DefaultStateStore,
  gracefulShutdown,
  initLogger,
} from '@purista/core'
import { getHttpServer } from '@purista/k8s-sdk'

import { theServiceV1Service } from './service/theService/v1/'

const main = async () => {
  // create a logger
  const logger = initLogger()

  // optional: set up opentelemetry if you like to use it
  const exporter = new OTLPTraceExporter({
    url: `http://localhost:14268/api/traces`,
  })
  const spanProcessor = new SimpleSpanProcessor(exporter)

  // optional: set up stores if they are needed for your service
  const secretStore = new DefaultSecretStore({ logger })
  const configStore = new DefaultConfigStore({ logger })
  const stateStore = new DefaultStateStore({ logger })

  // set up the eventbridge and start the event bridge
  const eventBridge = new DefaultEventBridge({ spanProcessor })
  await eventBridge.start()

  // set up the service
  const theService = theServiceV1Service.getInstance(eventBridge, {
    spanProcessor,
    configStore,
    secretStore,
    stateStore,
  })
  await theService.start()

  // create http server
  const app = getHttpServer({
    logger,
    // check event bridge health if /healthz endpoint is called
    healthFn: () => eventBridge.isHealthy(),
    // optional: expose the commands if they are defined to have url endpoint
    services: theService,
    // optional: expose service endpoints at [apiMountPath]/v[serviceVersion]/[path defined for command]
    // defaults to /api
    apiMountPath: '/api',
  })

   // start the http server
   // defaults to port 3000
   // optional: you can set the port in the optional parameter of this method
   const server = serve({
     fetch: app.fetch,
   })

  // register shut down methods
  gracefulShutdown(logger, [
    // begin with the event bridge to no longer accept incoming messages
    eventBridge,
    // optional: shut down the service
    theService,
    // optional: shut down the secret store
    secretStore,
    // optional: shut down the config store
    configStore,
    // optional: shut down the state store
    stateStore,
    // stop the http server
    {
       name: 'httpserver',
       destroy: async () => {
       server.closeIdleConnections()
       server.close()
    },
 },,
  ])
}

main()

Table of contents

Type Aliases

Functions

Type Aliases

GetHttpServerConfig

Ƭ GetHttpServerConfig: Object

The configuration object for creating the k8s http server

Type declaration

NameTypeDescription
apiMountPath?stringthe api mount path Default ts /api
disableEndpointExposing?booleandisables adding of all endpoints for commands which are marked to be exposed as http endpoints
healthFn() => Promise<boolean>health function to be executed on health check
hostname?stringhostname used in tracing and logging
loggerLoggera logger instance
services?Service | Service[]service or array of services which should expose their commands as endpoints if defined

Defined in

types.ts:6open in new window

Functions

addServiceEndpoints

â–¸ addServiceEndpoints(services, app, logger, apiMountPath?): void

Parameters

NameTypeDefault valueDescription
servicesundefined | Service<unknown> | Service<unknown>[]undefinedinstance of the service to add
appHono<Env, {}, "/">undefined-
loggerLoggerundefinedthe logger used for logging the addition
apiMountPathstring'/api'-

Returns

void

Default

/api

Defined in

addServiceEndpoints.impl.ts:29open in new window


getHttpServer

â–¸ getHttpServer(input, name?): Hono<Env, {}, "/">

Create a Hono web server. It adds per default the /healthz endpoint If services is set in options, all commands, which have defined http endpoints, will also be added as endpoints

The returned server is not started. You need to do it manually.

Parameters

NameTypeDefault valueDescription
inputGetHttpServerConfigundefinedthe config
namestring'K8sHttpHelperServer'-

Returns

Hono<Env, {}, "/">

a object with server, router, start and destroy functions and name var

Defined in

getHttpServer.impl.ts:20open in new window

Last update:
Contributors: Sebastian Wessel