gitops-pusher
command v1.92.3
Go to latest Published: Dec 16, 2025 License:BSD-3-Clause
Opens a new window with list of versions in this module.
Latest LatestThis package is not in the latest version of its module.
Opens a new window with license information.
Imports:18 Opens a new window with list of imports.
Imported by:0 Opens a new window with list of known importers.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
README¶
gitops-pusher
This is a small tool to help people achieve aGitOps workflow with Tailscale ACLchanges. This tool is intended to be used in a CI flow that looks like this:
name: Tailscale ACL syncingon: push: branches: [ "main" ] pull_request: branches: [ "main" ]jobs: acls: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Setup Go environment uses: actions/setup-go@v3.2.0 - name: Install gitops-pusher run: go install tailscale.com/cmd/gitops-pusher@latest - name: Deploy ACL if: github.event_name == 'push' env: TS_API_KEY: ${{ secrets.TS_API_KEY }} TS_TAILNET: ${{ secrets.TS_TAILNET }} run: | ~/go/bin/gitops-pusher --policy-file ./policy.hujson apply - name: ACL tests if: github.event_name == 'pull_request' env: TS_API_KEY: ${{ secrets.TS_API_KEY }} TS_TAILNET: ${{ secrets.TS_TAILNET }} run: | ~/go/bin/gitops-pusher --policy-file ./policy.hujson testChange the value of the--policy-file flag to point to the policy file ondisk. Policy files should be inHuJSONformat.
Click to show internal directories.
Click to hide internal directories.