Complete the code to start Jenkins with suggested plugins installation.
java -jar jenkins.war --[1]The --install-suggested-plugins option tells Jenkins to install the recommended plugins during startup.
Complete the command to install suggested plugins non-interactively.
java -jar jenkins.war --argumentsRealm.passwd.admin=admin --argumentsRealm.roles.admin=admin --[1]The --install-suggested-plugins flag installs recommended plugins automatically during Jenkins startup.
Fix the error in the command to install suggested plugins.
java -jar jenkins.war --[1]The correct option is --install-suggested-plugins. Other options are misspelled or invalid.
Fill both blanks to create a dictionary comprehension that filters plugins to install.
plugins_to_install = {plugin: True for plugin in all_plugins if plugin [1] [2]This comprehension selects plugins that are in the suggested_plugins list to install.
Fill all three blanks to create a command that installs suggested plugins and starts Jenkins.
java -jar jenkins.war --[1] --httpPort=[2] --argumentsRealm.passwd.admin=[3]
This command installs suggested plugins, sets Jenkins to run on port 8080, and sets admin password to 'admin'.