Skip to content

Commit bd5393b

Browse files
committed
docs: update install commands now that EE is the default edition
The install script now defaults to the enterprise edition. Update README to use --oss for OSS installation, and remove the --ee flag from all CI workflow install steps since it is no longer needed. Signed-off-by: Miguel Martinez Trivino <miguel@chainloop.dev>
1 parent 80dea40 commit bd5393b

5 files changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/author_verification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Install Chainloop
2222
run: |
23-
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
23+
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
2424
2525
- name: Checkout repository
2626
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.github/workflows/release.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Install Chainloop
2222
run: |
23-
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
23+
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
2424
2525
- name: Run Release Gate Attestation
2626
run: |
@@ -65,8 +65,7 @@ jobs:
6565

6666
- name: Install Chainloop
6767
run: |
68-
# Need the ee CLI to have access to project management capabilities
69-
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
68+
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
7069
7170
- name: Checkout
7271
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.github/workflows/scm_configuration_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Install Chainloop
2727
run: |
28-
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
28+
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
2929
3030
- name: Initialize Attestation
3131
run: |

.github/workflows/secrets-scan-daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Install Chainloop
2626
run: |
27-
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee
27+
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
2828
2929
- name: Initialize Attestation
3030
run: |

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,25 +97,25 @@ Follow the [quickstart](https://docs.chainloop.dev/quickstart) or the [getting s
9797
To **install the latest version** for macOS, Linux or Windows (using [WSL](https://learn.microsoft.com/en-us/windows/wsl/install)) just choose one of the following installation methods.
9898

9999
```bash
100-
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s
100+
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss
101101
```
102102

103103
you can retrieve a specific version with
104104

105105
```bash
106-
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --version v1.7.0
106+
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss --version v1.7.0
107107
```
108108

109109
and customize the install path (default to /usr/local/bin)
110110

111111
```bash
112-
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --path /my-path
112+
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss --path /my-path
113113
```
114114

115115
if [`cosign`](https://docs.sigstore.dev/cosign) is present in your system, in addition to the checksum check, a signature verification will be performed. This behavior can be enforced via the `--force-verification` flag.
116116

117117
```bash
118-
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --force-verification
118+
curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss --force-verification
119119
```
120120

121121
### Deploy Chainloop (optional)

0 commit comments

Comments
 (0)