Skip to content

Commit

Permalink
fix(app): forbid the use of containerPort in external deployment config
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasduteil committed Jul 29, 2020
1 parent 47fecec commit 6e4592c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/app/index.ts
Expand Up @@ -36,7 +36,7 @@ export const create = (
}: {
env: Environment;
config: Partial<AppConfig>;
deployment?: Partial<DeploymentParams>;
deployment?: Partial<Omit<DeploymentParams, "containerPort">>;
}
): { kind: string }[] => {
ok(process.env.CI_REGISTRY_IMAGE);
Expand Down

0 comments on commit 6e4592c

Please sign in to comment.