Start new talk for rhacs roxctl.

This commit is contained in:
2024-08-28 09:32:14 +12:00
parent f207178791
commit 52c421c1dc
4 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#+TITLE: Securing supply chain
#+DATE: <2024-08-28 Wed>
#+AUTHOR: James Blair
Red Hat Advanced Cluster Security can be easily integrated into an existing GitHub actions pipeline through the existing Stackrox suite of [[https://github.com/marketplace?query=stackrox][open source actions]].
An example pipeline would look like:
#+begin_src yaml
steps:
- name: Central login
uses: stackrox/central-login@v1
with:
endpoint: ${{ env.CENTRAL_ENDPOINT }}
- name: Install roxctl
uses: stackrox/roxctl-installer-action@v1
with:
central-endpoint: ${{ env.CENTRAL_ENDPOINT }}
central-token: ${{ env.ROX_API_TOKEN }}
#+end_src