mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
70 lines
1.7 KiB
TypeScript
70 lines
1.7 KiB
TypeScript
import * as pulumi from '@pulumi/pulumi';
|
|
import { CertManager } from '../utils/cert-manager';
|
|
import { Proxy } from '../utils/reverse-proxy';
|
|
import { App } from './app';
|
|
import { Environment } from './environment';
|
|
import { GraphQL } from './graphql';
|
|
import { Usage } from './usage';
|
|
|
|
export function deployProxy({
|
|
graphql,
|
|
app,
|
|
usage,
|
|
environment,
|
|
}: {
|
|
environment: Environment;
|
|
graphql: GraphQL;
|
|
app: App;
|
|
usage: Usage;
|
|
}) {
|
|
const { tlsIssueName } = new CertManager().deployCertManagerAndIssuer();
|
|
const commonConfig = new pulumi.Config('common');
|
|
|
|
return new Proxy(tlsIssueName, {
|
|
address: commonConfig.get('staticIp'),
|
|
aksReservedIpResourceGroup: commonConfig.get('aksReservedIpResourceGroup'),
|
|
})
|
|
.deployProxy({ replicas: environment.isProduction ? 3 : 1 })
|
|
.registerService({ record: environment.appDns }, [
|
|
{
|
|
name: 'app',
|
|
path: '/',
|
|
service: app.service,
|
|
},
|
|
{
|
|
name: 'server',
|
|
path: '/server',
|
|
service: graphql.service,
|
|
timeoutInSeconds: 60,
|
|
},
|
|
{
|
|
name: 'registry-api-health',
|
|
path: '/registry/_health',
|
|
customRewrite: '/_health',
|
|
service: graphql.service,
|
|
},
|
|
{
|
|
name: 'registry-api',
|
|
path: '/registry',
|
|
customRewrite: '/graphql',
|
|
service: graphql.service,
|
|
timeoutInSeconds: 60,
|
|
retriable: true,
|
|
},
|
|
{
|
|
name: 'graphql-api',
|
|
path: '/graphql',
|
|
customRewrite: '/graphql',
|
|
service: graphql.service,
|
|
timeoutInSeconds: 60,
|
|
retriable: true,
|
|
},
|
|
{
|
|
name: 'usage',
|
|
path: '/usage',
|
|
service: usage.service,
|
|
retriable: true,
|
|
},
|
|
])
|
|
.get();
|
|
}
|