mirror of
https://github.com/graphql-hive/console
synced 2026-05-22 16:48:56 +00:00
* Use 5432 as default port of pg * Fix ssl * fix: only set heartbeat env variable if heartbeat is enabled (#446) * fix: only set heartbeat env variable if heartbeat is enabled * fix: default port Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> * POSTGRES_SSL everywhere * oh come on * Fix Kafka connection * Fix DOCS_URL * Fix docs url * But I can feel your heartbeat I can feel your heartbeat (he said to me) 'I can feel your heartbeat' (running through me) Feel your heartbeat She said, 'I can feel your heartbeat' (she said to me) 'I can feel your heartbeat' (she said to me) 'I can feel your heartbeat' (running through me) Your heartbeat, feel your heartbeat * Your heartbeat, your heartbeat Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
65 lines
2.6 KiB
TypeScript
65 lines
2.6 KiB
TypeScript
import * as pulumi from '@pulumi/pulumi';
|
|
import * as azure from '@pulumi/azure';
|
|
import { parse } from 'pg-connection-string';
|
|
import { RemoteArtifactAsServiceDeployment } from '../utils/remote-artifact-as-service';
|
|
import { PackageHelper } from '../utils/pack';
|
|
import { DeploymentEnvironment } from '../types';
|
|
import { DbMigrations } from './db-migrations';
|
|
import { UsageEstimator } from './usage-estimation';
|
|
import { Emails } from './emails';
|
|
import { serviceLocalEndpoint } from '../utils/local-endpoint';
|
|
|
|
const rateLimitConfig = new pulumi.Config('rateLimit');
|
|
const commonConfig = new pulumi.Config('common');
|
|
const commonEnv = commonConfig.requireObject<Record<string, string>>('env');
|
|
const apiConfig = new pulumi.Config('api');
|
|
|
|
export type RateLimitService = ReturnType<typeof deployRateLimit>;
|
|
|
|
export function deployRateLimit({
|
|
storageContainer,
|
|
packageHelper,
|
|
deploymentEnv,
|
|
dbMigrations,
|
|
usageEstimator,
|
|
emails,
|
|
}: {
|
|
usageEstimator: UsageEstimator;
|
|
storageContainer: azure.storage.Container;
|
|
packageHelper: PackageHelper;
|
|
deploymentEnv: DeploymentEnvironment;
|
|
dbMigrations: DbMigrations;
|
|
emails: Emails;
|
|
}) {
|
|
const rawConnectionString = apiConfig.requireSecret('postgresConnectionString');
|
|
const connectionString = rawConnectionString.apply(rawConnectionString => parse(rawConnectionString));
|
|
|
|
return new RemoteArtifactAsServiceDeployment(
|
|
'rate-limiter',
|
|
{
|
|
storageContainer,
|
|
replicas: 1,
|
|
readinessProbe: '/_readiness',
|
|
livenessProbe: '/_health',
|
|
env: {
|
|
...deploymentEnv,
|
|
...commonEnv,
|
|
SENTRY: commonEnv.SENTRY_ENABLED,
|
|
LIMIT_CACHE_UPDATE_INTERVAL_MS: rateLimitConfig.require('updateIntervalMs'),
|
|
RELEASE: packageHelper.currentReleaseId(),
|
|
USAGE_ESTIMATOR_ENDPOINT: serviceLocalEndpoint(usageEstimator.service),
|
|
EMAILS_ENDPOINT: serviceLocalEndpoint(emails.service),
|
|
POSTGRES_HOST: connectionString.apply(connection => connection.host ?? ''),
|
|
POSTGRES_PORT: connectionString.apply(connection => connection.port ?? '5432'),
|
|
POSTGRES_PASSWORD: connectionString.apply(connection => connection.password ?? ''),
|
|
POSTGRES_USER: connectionString.apply(connection => connection.user ?? ''),
|
|
POSTGRES_DB: connectionString.apply(connection => connection.database ?? ''),
|
|
POSTGRES_SSL: connectionString.apply(connection => (connection.ssl ? '1' : '0')),
|
|
},
|
|
exposesMetrics: true,
|
|
packageInfo: packageHelper.npmPack('@hive/rate-limit'),
|
|
port: 4000,
|
|
},
|
|
[dbMigrations, usageEstimator.service, usageEstimator.deployment]
|
|
).deploy();
|
|
}
|