@starship-ci/generator
Version:
Kubernetes manifest generator for Starship deployments
14 lines (13 loc) • 450 B
TypeScript
import { Chain, StarshipConfig } from '@starship-ci/types';
import { Service } from 'kubernetesjs';
import { IGenerator } from '../../../types';
/**
* Generates the Service for Ethereum chain
* Based on the Helm template: chains/eth/service.yaml
*/
export declare class EthereumServiceGenerator implements IGenerator {
private config;
private chain;
constructor(chain: Chain, config: StarshipConfig);
generate(): Array<Service>;
}