Skip to content

Commit

Permalink
fix: marlowe ports (#57)
Browse files Browse the repository at this point in the history
* chore: port env vars

* fix: marlowe ports
  • Loading branch information
avatxus authored Apr 25, 2024
1 parent 6f06187 commit b5565f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions operator/src/shared/ports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ export function parseInstanceToEnvVars(instance: ServiceInstanceWithStatusAndKin
const rt_host = `${instance.spec.network}-${instance.spec.marloweVersion || DEFAULT_MARLOWE_VERSION}-rt.ext-marlowe-m1.svc.cluster.local`;
return [
{ name: 'MARLOWE_RT_WEBSERVER_HOST', value: removeSchema(instance.status.authenticatedEndpointUrl) },
{ name: 'MARLOWE_RT_WEBSERVER_PORT', value: '3700' },
{ name: 'MARLOWE_RT_WEBSERVER_PORT', value: '443' },
{ name: 'MARLOWE_RT_HOST', value: rt_host },
{ name: 'MARLOWE_RT_PORT', value: '3701' },
{ name: 'MARLOWE_RT_PORT', value: '3700' },
];
default: {
return [];
Expand Down

0 comments on commit b5565f2

Please sign in to comment.