Skip to content

Instantly share code, notes, and snippets.

View BrianJVarley's full-sized avatar

Brian Varley BrianJVarley

View GitHub Profile
@axdotl
axdotl / keycloak-export-import-k8s.md
Last active May 2, 2025 19:18
Keycloak Export in Kubernetes

Perform Keycloak Export and Import on Kubernetes

  • Setup Keycloak in non-HA mode (replica 1)
  • Disable UserFederation
  • You might have to increase the resource limits to avoid that pod beeing killed by memory or CPU limits

See Keycloak Documentation for more details.

Export

@matheo
matheo / app.initializer.ts
Created February 15, 2019 05:11
Angular APP_INITIALIZER with NgRx Effects
/**
* App Initializer with Effects
*/
export function initApplication(store: Store<AppState>) {
return () =>
new Promise(resolve => {
const loaded$ = new Subject();
store.dispatch(new LoadSystem());
store