Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x 193x | import { defineCommand } from '../../lib/define-command.js';
import { operatorList } from '../../lib/operator-commands.js';
import { humanJsonOutputFormatOption } from '../global.options.js';
export const keycloakCommand = defineCommand({
description: 'Manage Clever Cloud Keycloak services',
since: '3.13.0',
isExperimental: true,
featureFlag: 'operators',
options: {
format: humanJsonOutputFormatOption,
},
args: [],
async handler(options) {
await operatorList('keycloak', options.format);
},
});
|