[ISSUE-88] Add env variable round-trip, profile-aware SSL, and getStack support #132

Merged
hitanshu merged 5 commits from Dave/CFTunnels:ISSUE-88 into test 2026-07-06 18:47:15 +00:00
Showing only changes of commit 145597b8bd - Show all commits

View File

@ -23,7 +23,7 @@ public class DeployService {
public void redeploy(Long stackId) {
PortainerStack stack = portainerApiClient.getStack(stackId);
List<EnvVariable> env = stack.getEnv();
List<EnvVariable> env = stack.getEnv() != null ? stack.getEnv() : List.of();
portainerApiClient.redeployGitStack(stackId, props.getEndpointId(), true, env);
}
}