Created
November 15, 2018 13:17
-
-
Save odra/6fccbce064f847ec95a64c12ede6ee2f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
realmCr := &v1alpha1.KeycloakRealm{ | |
TypeMeta: metav1.TypeMeta{ | |
Kind: "KeycloakRealm", | |
APIVersion: "aerogear.org/v1alpha1", | |
}, | |
ObjectMeta: metav1.ObjectMeta{ | |
Name: "keycloak-realm-test", | |
Namespace: ns, | |
}, | |
Status:v1alpha1.KeycloakRealmStatus{ | |
KeycloakName: "keycloak-test", | |
}, | |
Spec: v1alpha1.KeycloakRealmSpec{ | |
KeycloakApiRealm: &v1alpha1.KeycloakApiRealm{ | |
ID: "keycloak-test-realm", | |
Realm: "keycloak-test-realm", | |
Enabled: true, | |
DisplayName: "keycloak realm test", | |
Clients:[]*v1alpha1.KeycloakClient{}, | |
IdentityProviders:[]*v1alpha1.KeycloakIdentityProvider{}, | |
Users:[]*v1alpha1.KeycloakUser{}, | |
}, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment