mirror of https://github.com/portainer/portainer
fix(secrets): add CE teaser EE-6568 (#11001)
parent
7bf346bd2d
commit
fc7d9ca2cd
|
@ -283,6 +283,20 @@ function InnerForm({
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="form-group">
|
||||||
|
<div className="col-sm-12">
|
||||||
|
<SwitchField
|
||||||
|
name="restrictSecrets"
|
||||||
|
data-cy="kubeSetup-restrictSecretsToggle"
|
||||||
|
label="In the UI, only admins may view and edit the contents of secrets that are not their own"
|
||||||
|
tooltip="This hides the ability to view or edit in the UI the contents of secrets that a non-admin user did not create themselves but does not prevent it via the command line."
|
||||||
|
labelClass="col-sm-5 col-lg-4"
|
||||||
|
checked={false}
|
||||||
|
featureId={FeatureId.K8S_ADM_ONLY_SECRETS}
|
||||||
|
onChange={() => {}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
<FormSection title="Resources and Metrics">
|
<FormSection title="Resources and Metrics">
|
||||||
<InsightsBox
|
<InsightsBox
|
||||||
|
|
|
@ -36,6 +36,7 @@ export enum FeatureId {
|
||||||
CUSTOM_LOGIN_BANNER = 'custom-login-banner',
|
CUSTOM_LOGIN_BANNER = 'custom-login-banner',
|
||||||
ENFORCE_DEPLOYMENT_OPTIONS = 'k8s-enforce-deployment-options',
|
ENFORCE_DEPLOYMENT_OPTIONS = 'k8s-enforce-deployment-options',
|
||||||
K8S_ADM_ONLY_USR_INGRESS_DEPLY = 'k8s-admin-only-ingress-deploy',
|
K8S_ADM_ONLY_USR_INGRESS_DEPLY = 'k8s-admin-only-ingress-deploy',
|
||||||
|
K8S_ADM_ONLY_SECRETS = 'k8s-admin-only-secrets',
|
||||||
K8S_ROLLING_RESTART = 'k8s-rolling-restart',
|
K8S_ROLLING_RESTART = 'k8s-rolling-restart',
|
||||||
K8SINSTALL = 'k8s-install',
|
K8SINSTALL = 'k8s-install',
|
||||||
K8S_ANNOTATIONS = 'k8s-annotations',
|
K8S_ANNOTATIONS = 'k8s-annotations',
|
||||||
|
|
|
@ -42,6 +42,7 @@ export async function init(edition: Edition) {
|
||||||
[FeatureId.K8S_EDIT_YAML]: Edition.BE,
|
[FeatureId.K8S_EDIT_YAML]: Edition.BE,
|
||||||
[FeatureId.ENFORCE_DEPLOYMENT_OPTIONS]: Edition.BE,
|
[FeatureId.ENFORCE_DEPLOYMENT_OPTIONS]: Edition.BE,
|
||||||
[FeatureId.K8S_ADM_ONLY_USR_INGRESS_DEPLY]: Edition.BE,
|
[FeatureId.K8S_ADM_ONLY_USR_INGRESS_DEPLY]: Edition.BE,
|
||||||
|
[FeatureId.K8S_ADM_ONLY_SECRETS]: Edition.BE,
|
||||||
[FeatureId.K8S_ROLLING_RESTART]: Edition.BE,
|
[FeatureId.K8S_ROLLING_RESTART]: Edition.BE,
|
||||||
[FeatureId.K8S_ANNOTATIONS]: Edition.BE,
|
[FeatureId.K8S_ANNOTATIONS]: Edition.BE,
|
||||||
[FeatureId.CA_FILE]: Edition.BE,
|
[FeatureId.CA_FILE]: Edition.BE,
|
||||||
|
|
Loading…
Reference in New Issue