Saltstack Official Salt Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # -*- coding: utf-8 -*-
- # vim: ft=yaml
- ---
- salt:
- version: ''
- pin_version: false
- py_ver: '' ## py2 is default
- rootuser: root
- rootgroup: root
- install_packages: true
- use_pip: false
- clean_config_d_dir: true
- restart_via_at: false
- parallel: true # salt.git module argument
-
- config_path: /etc/salt
-
- minion_remove_config: false
- master_remove_config: false
- minion_config_use_TOFS: false
- master_config_use_TOFS: false
-
- minion_service: salt-minion
- minion_service_details:
- # special name 'ignore' will not output anything about the service
- state: running
- enabled: true
-
- master_service: salt-master
- master_service_details:
- # special name 'ignore' will not output anything about the service
- state: running
- enabled: true
-
- api_service: salt-api
- api_service_details:
- # special name 'ignore' will not output anything about the service
- state: running
- enabled: true
-
- syndic_service: salt-syndic
-
- salt_master: salt-master
- salt_minion: salt-minion
- salt_master_macos_plist_hash: ''
- salt_minion_macos_plist_hash: ''
- salt_syndic: salt-syndic
- salt_cloud: salt-cloud
- salt_api: salt-api
- salt_ssh: salt-ssh
-
- pkgrepo: '' # see osfamilymap
- ssh_roster: {} # see pillar data
-
- python_git: python-git
- python_dulwich: python-dulwich
-
- master:
- gitfs_provider: gitpython
- minion:
- master_type: true # see init.sls & standalone.sls
-
- gitfs:
- dulwich:
- install_from_source: true
- pygit2:
- install_from_source: true
- version: 0.23.0
- git:
- # if not false, should be state name
- require_state: false
- install_from_package: git
- libgit2:
- version: 0.23.0
- install_from_source: true
- build_parent_dir: /usr/src/
- # hash necessary until github issue #9272 is addressed
- download_hash: 683d1164e361e2a0a8d52652840e2340
- gitpython:
- install_from_source: false
-
- cloud:
- template_sources:
- providers: salt://salt/files/cloud.providers.d
- profiles: salt://salt/files/cloud.profiles.d
- maps: salt://salt/files/cloud.maps.d
-
- salt_formulas:
- list: {} # via pillar data
- checkout_orig_branch: false
- git_opts:
- default:
- baseurl: https://github.com/saltstack-formulas
- basedir: /srv/formulas
- update: false
- options:
- rev: master
- output_loglevel: 'quiet'
|