calm-ability-6566
06/13/2024, 2:30 PMconst keycloak = new HelmRelease("keycloak-helm-chart", {
// ...helm chart config
});
const provider = new KeycloakProvider("keycloak", {
url: 'https://<keycloak url>',
clientId: "admin-cli",
realm: "master",
username: "admin",
password: "password",
initialLogin: false,
}, {dependsOn: keycloak, parent: keycloak});
// This one causes the 404 error since keycloak isn't fully deployed yet
const masterRealm = Realm.get("master-realm", "master", {}, {parent: provider, provider: provider, dependsOn: keycloak});
Has someone an idea why pulumi tries to load the realm before the helm chart is fully deployed?No matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by