mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
* wrap ember-power-select overrides in search-select css selector * move class accidentally applied to nested block * make renderInPlace default to true
55 lines
1.8 KiB
Handlebars
55 lines
1.8 KiB
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
<TabPageHeader @model={{@backend}} @breadcrumbs={{@breadcrumbs}}>
|
|
<ToolbarLink @route="configure">Configure Kubernetes</ToolbarLink>
|
|
</TabPageHeader>
|
|
|
|
{{#if @promptConfig}}
|
|
<ConfigCta />
|
|
{{else}}
|
|
<div class="is-grid has-top-margin-l grid-2-columns grid-gap-2">
|
|
<OverviewCard @cardTitle="Roles" @subText="The number of Vault roles being used to generate Kubernetes credentials.">
|
|
<:action>
|
|
<Hds::Link::Standalone
|
|
@text={{if @roles.length "View Roles" "Create Role"}}
|
|
@route={{if @roles.length "roles" "roles.create"}}
|
|
@icon={{if @roles.length "chevron-right" "plus"}}
|
|
@iconPosition="trailing"
|
|
/>
|
|
</:action>
|
|
<:content>
|
|
<h2 class="title is-2 has-font-weight-normal has-top-margin-m" data-test-roles-card-overview-num>{{or
|
|
@roles.length
|
|
"None"
|
|
}}</h2>
|
|
</:content>
|
|
</OverviewCard>
|
|
<OverviewCard @cardTitle="Generate credentials" @subText="Quickly generate credentials by typing the role name.">
|
|
<:content>
|
|
<div class="has-top-margin-m is-flex">
|
|
<SearchSelect
|
|
class="is-flex-grow-1"
|
|
@ariaLabel="Role"
|
|
@placeholder="Type to find a role..."
|
|
@disallowNewItems={{true}}
|
|
@options={{this.roleOptions}}
|
|
@selectLimit="1"
|
|
@fallbackComponent="input-search"
|
|
@onChange={{this.selectRole}}
|
|
/>
|
|
<Hds::Button
|
|
@text="Generate"
|
|
@color="secondary"
|
|
class="has-left-margin-s"
|
|
disabled={{not this.selectedRole}}
|
|
{{on "click" this.generateCredential}}
|
|
data-test-generate-credential-button
|
|
/>
|
|
</div>
|
|
</:content>
|
|
</OverviewCard>
|
|
</div>
|
|
{{/if}} |