Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-and-sign-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
include:
- target: cli
suffix: ""
publish_latest: true
latest_tag: "latest"
- target: enterprise
suffix: "-enterprise"
publish_latest: false
latest_tag: "latest-enterprise"
env:
DOCKER_REGISTRY: ${{ vars.DOCKER_REGISTRY }}
DOCKER_REPOSITORY: ${{ vars.DOCKER_REPOSITORY }}
Expand Down Expand Up @@ -57,8 +57,8 @@ jobs:
run: |
TAGS="${{ steps.image-ref.outputs.version_tag }}"

if [ "${{ matrix.publish_latest }}" = "true" ]; then
TAGS="${TAGS}"$'\n'"${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}:latest"
if [ -n "${{ matrix.latest_tag }}" ]; then
TAGS="${TAGS}"$'\n'"${DOCKER_REGISTRY}/${DOCKER_REPOSITORY}:${{ matrix.latest_tag }}"
fi

{
Expand Down
2 changes: 1 addition & 1 deletion deployments/helm/openhound/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ helm install -f values.yml openhound-<name> ./deployments/helm/openhound
# Example values for the JAMF collector
image:
repository: docker.io/specterops/openhound
tag: "0.1.1-enterprise"
tag: "latest-enterprise"

# Optional environment variables.
env:
Expand Down
2 changes: 1 addition & 1 deletion deployments/helm/values.example.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Example values for the JAMF collector
image:
repository: docker.io/specterops/openhound
tag: "0.1.1-enterprise"
tag: "latest-enterprise"

# Optional environment variables.
env:
Expand Down
2 changes: 1 addition & 1 deletion example-configurations/bloodhound-enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
1. Copy `.dlt-example` to `${HOME}/.dlt`and `docker-compose.yml` to `${HOME}`.
2. Fill in your credentials in the toml files.
3. Place any required key files (github.pem, okta.json) in `${HOME}/.dlt`.
4. Pull image from SpecterOps Docker Hub: `docker pull specterops/openhound:0.1.1-enterprise`
4. Pull image from SpecterOps Docker Hub: `docker pull specterops/openhound:latest-enterprise`
or run to pull from docker-compose.yml: `docker compose pull`
5. Run all collectors: `docker compose up -d`
or run a single one: `docker compose up -d scheduler-jamf`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
x-scheduler: &scheduler
image: specterops/openhound:${IMAGE_VERSION:-0.1.1-enterprise}
image: specterops/openhound:${IMAGE_VERSION:latest-enterprise}
restart: unless-stopped
init: true
volumes:
Expand Down
Loading