Complete the code to specify the Jenkins system message in JCasC YAML.
jenkins: systemMessage: "[1]"
The systemMessage field sets the message shown on Jenkins dashboard. The correct message is the welcoming one.
Complete the code to enable the Jenkins security realm as 'local'.
jenkins:
securityRealm:
[1]: {}The local security realm means Jenkins manages users internally.
Fix the error in the JCasC snippet to correctly configure the number of executors.
jenkins:
numExecutors: [1]The numExecutors must be a positive integer. The number 2 is correct.
Fill both blanks to configure the Jenkins agent protocol and its enabled status.
jenkins:
agentProtocols:
- [1]
disableRememberMe: [2]The JNLP4-connect is a common agent protocol. The disableRememberMe should be false to allow remembering login.
Fill all three blanks to configure a Jenkins job with a name, description, and a simple shell build step.
jobs:
- script:
name: "[1]"
description: "[2]"
builders:
- shell: "[3]"The job name is ExampleJob, description explains the job, and the shell step prints a greeting.