mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
117 lines
4.2 KiB
TypeScript
117 lines
4.2 KiB
TypeScript
import * as pulumi from '@pulumi/pulumi';
|
|
import * as azure from '@pulumi/azure';
|
|
import { Cloudflare } from './cloudflare';
|
|
import { Tokens } from './tokens';
|
|
import { Webhooks } from './webhooks';
|
|
import { Redis } from './redis';
|
|
import { DbMigrations } from './db-migrations';
|
|
import { Schema } from './schema';
|
|
import { RemoteArtifactAsServiceDeployment } from '../utils/remote-artifact-as-service';
|
|
import { serviceLocalEndpoint } from '../utils/local-endpoint';
|
|
import { DeploymentEnvironment } from '../types';
|
|
import { Clickhouse } from './clickhouse';
|
|
import { Usage } from './usage';
|
|
import { PackageHelper } from '../utils/pack';
|
|
import { UsageEstimator } from './usage-estimation';
|
|
import { RateLimitService } from './rate-limit';
|
|
import { StripeBillingService } from './billing';
|
|
|
|
const commonConfig = new pulumi.Config('common');
|
|
const cloudflareConfig = new pulumi.Config('cloudflare');
|
|
const apiConfig = new pulumi.Config('api');
|
|
const githubAppConfig = new pulumi.Config('ghapp');
|
|
|
|
const commonEnv = commonConfig.requireObject<Record<string, string>>('env');
|
|
const apiEnv = apiConfig.requireObject<Record<string, string>>('env');
|
|
|
|
export type GraphQL = ReturnType<typeof deployGraphQL>;
|
|
|
|
export function deployGraphQL({
|
|
clickhouse,
|
|
packageHelper,
|
|
storageContainer,
|
|
deploymentEnv,
|
|
tokens,
|
|
webhooks,
|
|
schema,
|
|
cloudflare,
|
|
redis,
|
|
usage,
|
|
usageEstimator,
|
|
dbMigrations,
|
|
rateLimit,
|
|
billing,
|
|
}: {
|
|
storageContainer: azure.storage.Container;
|
|
packageHelper: PackageHelper;
|
|
clickhouse: Clickhouse;
|
|
deploymentEnv: DeploymentEnvironment;
|
|
tokens: Tokens;
|
|
webhooks: Webhooks;
|
|
schema: Schema;
|
|
redis: Redis;
|
|
cloudflare: Cloudflare;
|
|
usage: Usage;
|
|
usageEstimator: UsageEstimator;
|
|
dbMigrations: DbMigrations;
|
|
rateLimit: RateLimitService;
|
|
billing: StripeBillingService;
|
|
}) {
|
|
return new RemoteArtifactAsServiceDeployment(
|
|
'graphql-api',
|
|
{
|
|
storageContainer,
|
|
replicas: 1,
|
|
readinessProbe: '/_readiness',
|
|
livenessProbe: '/_health',
|
|
env: {
|
|
...apiEnv,
|
|
...deploymentEnv,
|
|
...apiConfig.requireObject<Record<string, string>>('env'),
|
|
...commonEnv,
|
|
CLICKHOUSE_PROTOCOL: clickhouse.config.protocol,
|
|
CLICKHOUSE_HOST: clickhouse.config.host,
|
|
CLICKHOUSE_PORT: clickhouse.config.port,
|
|
CLICKHOUSE_USERNAME: clickhouse.config.username,
|
|
CLICKHOUSE_PASSWORD: clickhouse.config.password,
|
|
REDIS_HOST: redis.config.host,
|
|
REDIS_PORT: String(redis.config.port),
|
|
REDIS_PASSWORD: redis.config.password,
|
|
RELEASE: packageHelper.currentReleaseId(),
|
|
POSTGRES_CONNECTION_STRING: apiConfig.requireSecret('postgresConnectionString'),
|
|
AUTH0_DOMAIN: commonConfig.require('auth0Domain'),
|
|
AUTH0_CLIENT_ID: commonConfig.require('auth0ClientId'),
|
|
AUTH0_CLIENT_SECRET: commonConfig.requireSecret('auth0ClientSecret'),
|
|
BILLING_ENDPOINT: serviceLocalEndpoint(billing.service),
|
|
TOKENS_ENDPOINT: serviceLocalEndpoint(tokens.service),
|
|
WEBHOOKS_ENDPOINT: serviceLocalEndpoint(webhooks.service),
|
|
SCHEMA_ENDPOINT: serviceLocalEndpoint(schema.service),
|
|
CF_BASE_PATH: 'https://api.cloudflare.com/client/v4/accounts',
|
|
CF_ACCOUNT_ID: cloudflareConfig.require('accountId'),
|
|
CF_AUTH_TOKEN: cloudflareConfig.requireSecret('apiToken'),
|
|
CF_NAMESPACE_ID: cloudflare.cfStorageNamespaceId,
|
|
CDN_BASE_URL: cloudflare.workerBaseUrl,
|
|
CDN_AUTH_PRIVATE_KEY: cloudflare.authPrivateKey,
|
|
HIVE_USAGE_ENDPOINT: serviceLocalEndpoint(usage.service),
|
|
USAGE_ESTIMATOR_ENDPOINT: serviceLocalEndpoint(usageEstimator.service),
|
|
HIVE_REPORTING_ENDPOINT: 'http://0.0.0.0:4000/graphql',
|
|
GITHUB_APP_PRIVATE_KEY: githubAppConfig.requireSecret('key'),
|
|
RATE_LIMIT_ENDPOINT: serviceLocalEndpoint(rateLimit.service),
|
|
GITHUB_APP_ID: githubAppConfig.require('id'),
|
|
ENCRYPTION_SECRET: commonConfig.requireSecret('encryptionSecret'),
|
|
},
|
|
packageInfo: packageHelper.npmPack('@hive/server'),
|
|
exposesMetrics: true,
|
|
port: 4000,
|
|
},
|
|
[
|
|
dbMigrations,
|
|
redis.deployment,
|
|
redis.service,
|
|
clickhouse.deployment,
|
|
clickhouse.service,
|
|
rateLimit.deployment,
|
|
rateLimit.service,
|
|
]
|
|
).deploy();
|
|
}
|