Skip to content

Commit

Permalink
try localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
strantalis committed Aug 13, 2024
1 parent 2faed84 commit d765a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/chart_platform_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (suite *PlatformChartIntegrationSuite) TestBasicDeployment() {
// Provision Keycloak
kcDataPath, err := filepath.Abs("../platform/service/cmd/keycloak_data.yaml")
suite.Require().NoError(err)
dockerRun := exec.Command("docker", "run", "--rm", "--network=host", "-v", fmt.Sprintf("%s:/keycloak_data.yaml", kcDataPath), "registry.opentdf.io/platform:nightly", "provision", "keycloak-from-config", "-e", "https://keycloak.opentdf.local", "-f", "/keycloak_data.yaml")
dockerRun := exec.Command("docker", "run", "--rm", "--network=host", "-v", fmt.Sprintf("%s:/keycloak_data.yaml", kcDataPath), "registry.opentdf.io/platform:nightly", "provision", "keycloak-from-config", "-e", "https://localhost", "-f", "/keycloak_data.yaml")
dockerRunOutput, err := dockerRun.CombinedOutput()
suite.Require().NoError(err, string(dockerRunOutput))

Expand Down

0 comments on commit d765a52

Please sign in to comment.