From 9c50d65abce5a0e3517b56574a02c49a99d5f9c9 Mon Sep 17 00:00:00 2001 From: Comte Date: Sat, 7 Sep 2024 15:48:29 +0200 Subject: [PATCH] Update openshiftSCC.json --- .../main/resources/schemas/ide/openshiftSCC.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/onyxia-api/src/main/resources/schemas/ide/openshiftSCC.json b/onyxia-api/src/main/resources/schemas/ide/openshiftSCC.json index bdbf5739..fe94b0df 100644 --- a/onyxia-api/src/main/resources/schemas/ide/openshiftSCC.json +++ b/onyxia-api/src/main/resources/schemas/ide/openshiftSCC.json @@ -3,19 +3,22 @@ "title": "Openshift SCC", "description": "configuration for openshift compatibility", "type": "object", - "x-onyxia": { - "hidden": true - }, "properties": { "enabled": { "description": "enable rolebinding with openshift scc", "type": "boolean", - "default": false + "default": false, + "x-onyxia": { + "hidden": true + } }, "scc": { "type": "string", "description": "name of scc for rolebinding", - "default": "anyuid" + "default": "anyuid", + "x-onyxia": { + "hidden": true + } } } }