Commit 28a3fdce authored by Savas Vedova's avatar Savas Vedova

Merge branch '332072-update-editor-rule-button' into 'master'

Update security policy editor rule button styling

See merge request gitlab-org/gitlab!69412
parents 6f664eae 3a0f198a
...@@ -33,12 +33,22 @@ import PolicyRuleBuilder from './policy_rule_builder.vue'; ...@@ -33,12 +33,22 @@ import PolicyRuleBuilder from './policy_rule_builder.vue';
export default { export default {
EDITOR_MODES, EDITOR_MODES,
i18n: { i18n: {
actions: s__('SecurityOrchestration|Actions'),
addRule: s__('SecurityOrchestration|Add rule'),
defaultTrafficBehavior: s__(
'NetworkPolicies|Traffic that does not match any rule will be blocked.',
),
description: __('Description'),
toggleLabel: s__('SecurityOrchestration|Policy status'), toggleLabel: s__('SecurityOrchestration|Policy status'),
PARSING_ERROR_MESSAGE, PARSING_ERROR_MESSAGE,
name: __('Name'),
noEnvironmentDescription: s__( noEnvironmentDescription: s__(
'SecurityOrchestration|Network Policies can be used to limit which network traffic is allowed between containers inside the cluster.', 'NetworkPolicies|Network Policies can be used to limit which network traffic is allowed between containers inside the cluster.',
), ),
noEnvironmentButton: __('Learn more'), noEnvironmentButton: __('Learn more'),
policyPreview: s__('SecurityOrchestration|Policy preview'),
rules: s__('SecurityOrchestration|Rules'),
unparseable: s__('SecurityOrchestration|Unable to parse policy'),
}, },
components: { components: {
GlEmptyState, GlEmptyState,
...@@ -199,11 +209,11 @@ export default { ...@@ -199,11 +209,11 @@ export default {
{{ $options.i18n.PARSING_ERROR_MESSAGE }} {{ $options.i18n.PARSING_ERROR_MESSAGE }}
</gl-alert> </gl-alert>
<gl-form-group :label="s__('NetworkPolicies|Name')" label-for="policyName"> <gl-form-group :label="$options.i18n.name" label-for="policyName">
<gl-form-input id="policyName" v-model="policy.name" :disabled="hasParsingError" /> <gl-form-input id="policyName" v-model="policy.name" :disabled="hasParsingError" />
</gl-form-group> </gl-form-group>
<gl-form-group :label="s__('NetworkPolicies|Description')" label-for="policyDescription"> <gl-form-group :label="$options.i18n.description" label-for="policyDescription">
<gl-form-textarea <gl-form-textarea
id="policyDescription" id="policyDescription"
v-model="policy.description" v-model="policy.description"
...@@ -217,7 +227,7 @@ export default { ...@@ -217,7 +227,7 @@ export default {
<dim-disable-container data-testid="rule-builder-container" :disabled="hasParsingError"> <dim-disable-container data-testid="rule-builder-container" :disabled="hasParsingError">
<template #title> <template #title>
<h4>{{ s__('NetworkPolicies|Rules') }}</h4> <h4>{{ $options.i18n.rules }}</h4>
</template> </template>
<template #disabled> <template #disabled>
...@@ -240,19 +250,19 @@ export default { ...@@ -240,19 +250,19 @@ export default {
@remove="removeRule(index)" @remove="removeRule(index)"
/> />
<div class="gl-p-3 gl-rounded-base gl-border-1 gl-border-solid gl-border-gray-100 gl-mb-5"> <div
<gl-button variant="link" data-testid="add-rule" @click="addRule">{{ class="gl-p-5 gl-rounded-base gl-border-1 gl-border-solid gl-border-gray-100 gl-mb-5 gl-bg-gray-10"
s__('Network Policy|New rule') >
}}</gl-button> <gl-button variant="link" data-testid="add-rule" icon="plus" @click="addRule">
{{ $options.i18n.addRule }}
</gl-button>
</div> </div>
</dim-disable-container> </dim-disable-container>
<dim-disable-container data-testid="policy-action-container" :disabled="hasParsingError"> <dim-disable-container data-testid="policy-action-container" :disabled="hasParsingError">
<template #title> <template #title>
<h4>{{ s__('NetworkPolicies|Actions') }}</h4> <h4>{{ $options.i18n.actions }}</h4>
<p> <p>{{ $options.i18n.defaultTrafficBehavior }}</p>
{{ s__('NetworkPolicies|Traffic that does not match any rule will be blocked.') }}
</p>
</template> </template>
<template #disabled> <template #disabled>
...@@ -268,11 +278,11 @@ export default { ...@@ -268,11 +278,11 @@ export default {
<template #rule-editor-preview> <template #rule-editor-preview>
<dim-disable-container data-testid="policy-preview-container" :disabled="hasParsingError"> <dim-disable-container data-testid="policy-preview-container" :disabled="hasParsingError">
<template #title> <template #title>
<h5>{{ s__('NetworkPolicies|Policy preview') }}</h5> <h5>{{ $options.i18n.policyPreview }}</h5>
</template> </template>
<template #disabled> <template #disabled>
<policy-preview :policy-yaml="s__('NetworkPolicies|Unable to parse policy')" /> <policy-preview :policy-yaml="$options.i18n.unparsable" />
</template> </template>
<policy-preview :policy-yaml="policyYaml" :policy-description="humanizedPolicy" /> <policy-preview :policy-yaml="policyYaml" :policy-description="humanizedPolicy" />
......
<script> <script>
import { GlAlert, GlButton, GlLink, GlSprintf } from '@gitlab/ui'; import { GlAlert, GlButton, GlLink, GlSprintf } from '@gitlab/ui';
import { s__ } from '~/locale'; import { __, s__ } from '~/locale';
import getAgentCount from '../../graphql/queries/get_agent_count.query.graphql'; import getAgentCount from '../../graphql/queries/get_agent_count.query.graphql';
export default { export default {
...@@ -11,10 +11,11 @@ export default { ...@@ -11,10 +11,11 @@ export default {
AGENT_REQUIRED: s__( AGENT_REQUIRED: s__(
'NetworkPolicies|Please %{installLinkStart}install%{installLinkEnd} and %{configureLinkStart}configure a Kubernetes Agent for this project%{configureLinkEnd} to enable alerts.', 'NetworkPolicies|Please %{installLinkStart}install%{installLinkEnd} and %{configureLinkStart}configure a Kubernetes Agent for this project%{configureLinkEnd} to enable alerts.',
), ),
BUTTON_LABEL: s__('NetworkPolicies|+ Add alert'), BUTTON_LABEL: s__('NetworkPolicies|Add alert'),
HIGH_VOLUME_WARNING: s__( HIGH_VOLUME_WARNING: s__(
`NetworkPolicies|Alerts are intended to be selectively used for a limited number of events that are potentially concerning and warrant a manual review. Alerts should not be used as a substitute for a SIEM or a logging tool. High volume alerts are likely to be dropped so as to preserve the stability of GitLab's integration with Kubernetes.`, `NetworkPolicies|Alerts are intended to be selectively used for a limited number of events that are potentially concerning and warrant a manual review. Alerts should not be used as a substitute for a SIEM or a logging tool. High volume alerts are likely to be dropped so as to preserve the stability of GitLab's integration with Kubernetes.`,
), ),
REMOVE: __('Remove'),
}, },
components: { components: {
GlAlert, GlAlert,
...@@ -102,6 +103,7 @@ export default { ...@@ -102,6 +103,7 @@ export default {
variant="link" variant="link"
category="primary" category="primary"
data-testid="add-alert" data-testid="add-alert"
icon="plus"
:disabled="!isAgentInstalled" :disabled="!isAgentInstalled"
@click="$emit('update-alert', !policyAlert)" @click="$emit('update-alert', !policyAlert)"
> >
...@@ -127,7 +129,7 @@ export default { ...@@ -127,7 +129,7 @@ export default {
data-testid="remove-alert" data-testid="remove-alert"
icon="remove" icon="remove"
category="tertiary" category="tertiary"
:aria-label="__('Remove')" :aria-label="$options.i18n.REMOVE"
@click="$emit('update-alert', !policyAlert)" @click="$emit('update-alert', !policyAlert)"
/> />
</div> </div>
......
...@@ -22115,9 +22115,6 @@ msgstr "" ...@@ -22115,9 +22115,6 @@ msgstr ""
msgid "Network" msgid "Network"
msgstr "" msgstr ""
msgid "Network Policy|New rule"
msgstr ""
msgid "NetworkPolicies|%{ifLabelStart}if%{ifLabelEnd} %{ruleType} %{isLabelStart}is%{isLabelEnd} %{ruleDirection} %{ruleSelector} %{directionLabelStart}and is inbound from a%{directionLabelEnd} %{rule} %{portsLabelStart}on%{portsLabelEnd} %{ports}" msgid "NetworkPolicies|%{ifLabelStart}if%{ifLabelEnd} %{ruleType} %{isLabelStart}is%{isLabelEnd} %{ruleDirection} %{ruleSelector} %{directionLabelStart}and is inbound from a%{directionLabelEnd} %{rule} %{portsLabelStart}on%{portsLabelEnd} %{ports}"
msgstr "" msgstr ""
...@@ -22139,16 +22136,13 @@ msgstr "" ...@@ -22139,16 +22136,13 @@ msgstr ""
msgid "NetworkPolicies|%{strongOpen}any%{strongClose} port" msgid "NetworkPolicies|%{strongOpen}any%{strongClose} port"
msgstr "" msgstr ""
msgid "NetworkPolicies|+ Add alert"
msgstr ""
msgid "NetworkPolicies|.yaml" msgid "NetworkPolicies|.yaml"
msgstr "" msgstr ""
msgid "NetworkPolicies|.yaml mode" msgid "NetworkPolicies|.yaml mode"
msgstr "" msgstr ""
msgid "NetworkPolicies|Actions" msgid "NetworkPolicies|Add alert"
msgstr "" msgstr ""
msgid "NetworkPolicies|Alerts are intended to be selectively used for a limited number of events that are potentially concerning and warrant a manual review. Alerts should not be used as a substitute for a SIEM or a logging tool. High volume alerts are likely to be dropped so as to preserve the stability of GitLab's integration with Kubernetes." msgid "NetworkPolicies|Alerts are intended to be selectively used for a limited number of events that are potentially concerning and warrant a manual review. Alerts should not be used as a substitute for a SIEM or a logging tool. High volume alerts are likely to be dropped so as to preserve the stability of GitLab's integration with Kubernetes."
...@@ -22184,9 +22178,6 @@ msgstr "" ...@@ -22184,9 +22178,6 @@ msgstr ""
msgid "NetworkPolicies|Deny all traffic" msgid "NetworkPolicies|Deny all traffic"
msgstr "" msgstr ""
msgid "NetworkPolicies|Description"
msgstr ""
msgid "NetworkPolicies|Edit policy" msgid "NetworkPolicies|Edit policy"
msgstr "" msgstr ""
...@@ -22211,10 +22202,10 @@ msgstr "" ...@@ -22211,10 +22202,10 @@ msgstr ""
msgid "NetworkPolicies|Kubernetes error: %{error}" msgid "NetworkPolicies|Kubernetes error: %{error}"
msgstr "" msgstr ""
msgid "NetworkPolicies|Name" msgid "NetworkPolicies|Network"
msgstr "" msgstr ""
msgid "NetworkPolicies|Network" msgid "NetworkPolicies|Network Policies can be used to limit which network traffic is allowed between containers inside the cluster."
msgstr "" msgstr ""
msgid "NetworkPolicies|Network traffic" msgid "NetworkPolicies|Network traffic"
...@@ -22244,9 +22235,6 @@ msgstr "" ...@@ -22244,9 +22235,6 @@ msgstr ""
msgid "NetworkPolicies|Policy editor" msgid "NetworkPolicies|Policy editor"
msgstr "" msgstr ""
msgid "NetworkPolicies|Policy preview"
msgstr ""
msgid "NetworkPolicies|Rule" msgid "NetworkPolicies|Rule"
msgstr "" msgstr ""
...@@ -22256,9 +22244,6 @@ msgstr "" ...@@ -22256,9 +22244,6 @@ msgstr ""
msgid "NetworkPolicies|Rule mode is unavailable for this policy. In some cases, we cannot parse the YAML file back into the rules editor." msgid "NetworkPolicies|Rule mode is unavailable for this policy. In some cases, we cannot parse the YAML file back into the rules editor."
msgstr "" msgstr ""
msgid "NetworkPolicies|Rules"
msgstr ""
msgid "NetworkPolicies|Save changes" msgid "NetworkPolicies|Save changes"
msgstr "" msgstr ""
...@@ -22271,9 +22256,6 @@ msgstr "" ...@@ -22271,9 +22256,6 @@ msgstr ""
msgid "NetworkPolicies|Traffic that does not match any rule will be blocked." msgid "NetworkPolicies|Traffic that does not match any rule will be blocked."
msgstr "" msgstr ""
msgid "NetworkPolicies|Unable to parse policy"
msgstr ""
msgid "NetworkPolicies|all DNS names" msgid "NetworkPolicies|all DNS names"
msgstr "" msgstr ""
...@@ -29702,6 +29684,12 @@ msgstr "" ...@@ -29702,6 +29684,12 @@ msgstr ""
msgid "SecurityOrchestration|Action" msgid "SecurityOrchestration|Action"
msgstr "" msgstr ""
msgid "SecurityOrchestration|Actions"
msgstr ""
msgid "SecurityOrchestration|Add rule"
msgstr ""
msgid "SecurityOrchestration|All policies" msgid "SecurityOrchestration|All policies"
msgstr "" msgstr ""
...@@ -29735,9 +29723,6 @@ msgstr "" ...@@ -29735,9 +29723,6 @@ msgstr ""
msgid "SecurityOrchestration|Network" msgid "SecurityOrchestration|Network"
msgstr "" msgstr ""
msgid "SecurityOrchestration|Network Policies can be used to limit which network traffic is allowed between containers inside the cluster."
msgstr ""
msgid "SecurityOrchestration|New policy" msgid "SecurityOrchestration|New policy"
msgstr "" msgstr ""
...@@ -29753,6 +29738,9 @@ msgstr "" ...@@ -29753,6 +29738,9 @@ msgstr ""
msgid "SecurityOrchestration|Policy editor" msgid "SecurityOrchestration|Policy editor"
msgstr "" msgstr ""
msgid "SecurityOrchestration|Policy preview"
msgstr ""
msgid "SecurityOrchestration|Policy status" msgid "SecurityOrchestration|Policy status"
msgstr "" msgstr ""
...@@ -29762,6 +29750,9 @@ msgstr "" ...@@ -29762,6 +29750,9 @@ msgstr ""
msgid "SecurityOrchestration|Rule" msgid "SecurityOrchestration|Rule"
msgstr "" msgstr ""
msgid "SecurityOrchestration|Rules"
msgstr ""
msgid "SecurityOrchestration|Scan Execution" msgid "SecurityOrchestration|Scan Execution"
msgstr "" msgstr ""
...@@ -29795,6 +29786,9 @@ msgstr "" ...@@ -29795,6 +29786,9 @@ msgstr ""
msgid "SecurityOrchestration|To widen your search, change filters above or select a different security policy project." msgid "SecurityOrchestration|To widen your search, change filters above or select a different security policy project."
msgstr "" msgstr ""
msgid "SecurityOrchestration|Unable to parse policy"
msgstr ""
msgid "SecurityOrchestration|Update scan execution policies" msgid "SecurityOrchestration|Update scan execution policies"
msgstr "" msgstr ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment