Skip to content

Commit

Permalink
Make dataset namespace configurable (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanemerson authored Aug 22, 2023
1 parent b4f4d32 commit 319266e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/keycloak-create-dataset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
clusterName:
description: 'Name of the cluster'
type: string
namespace:
description: 'Name of the Keycloak namespace'
type: string
default: "runner-keycloak"
realms:
description: 'Number of realms to create'
type: string
Expand All @@ -23,9 +27,6 @@ on:
type: string
default: '300'

env:
PROJECT: runner-keycloak

jobs:
prepare:
name: Create Keycloak dataset
Expand All @@ -50,7 +51,7 @@ jobs:
- name: Create Keycloak dataset
uses: ./.github/actions/keycloak-create-dataset
with:
project: ${{ env.PROJECT }}
project: ${{ inputs.namespace }}
realms: ${{ inputs.realms }}
users: ${{ inputs.users }}
clients: ${{ inputs.clients }}
Expand Down

0 comments on commit 319266e

Please sign in to comment.