Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
H
heist-salt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
3
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
saltstack
pop
heist-salt
Merge requests
!34
Add minion_type grain to unbootstrapped minions
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add minion_type grain to unbootstrapped minions
ch3ll/heist-salt:grain
into
master
Overview
0
Commits
1
Pipelines
2
Changes
4
Merged
Megan Wilhite
requested to merge
ch3ll/heist-salt:grain
into
master
3 years ago
Overview
0
Commits
1
Pipelines
2
Changes
4
Expand
Fixes:
#26 (closed)
Edited
3 years ago
by
Megan Wilhite
0
0
Merge request reports
Compare
master
version 1
79abd7b5
3 years ago
master (base)
and
latest version
latest version
0eee1f39
1 commit,
3 years ago
version 1
79abd7b5
1 commit,
3 years ago
4 files
+
27
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
docs/source/topics/salt_minion.rst
0 → 100644
+
23
−
0
Options
Heist Minion
============
There are two ways to differentiate between a Heist-Salt minion
and a regular minion. A Heist-Salt minion communicates with the
master over SSH. Also, a Heist-Salt minion includes a `minion_type: heist`
grain. If you want to target only heist minions you can with
grains targeting on a Salt Master.
.. code-block:: bash
salt -G 'minion_type:heist' test.version
Since Heist-Salt minions communicate over SSH if your Salt Master is attempting
to check for connected minions it will not work by default for Heist Minions. You
will need to set `detect_remote_minions` to be True in your Salt Master configuration.
This will check for connections the Master is connected to over port 22
by default. If you are running SSH on a different port you can change the
port with `remote_minions_port`. These settings will allow presence events, the
manage runner and any other features that detect connected minions in to a Salt Master
to work properly.
Loading