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?