You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CLI supports optional extras for additional functionality:
140
+
141
+
#### AWS OIDC Support
142
+
143
+
For AWS environments (ECS, EKS, EC2), install with `aws` extra to enable automatic credential discovery:
144
+
145
+
```
146
+
pip install cloudsmith-cli[aws]
147
+
```
148
+
149
+
This installs `boto3[crt]` for AWS credential chain support, STS token generation, and AWS SSO compatibility.
150
+
151
+
#### All Optional Features
152
+
153
+
To install all optional dependencies:
154
+
155
+
```
156
+
pip install cloudsmith-cli[all]
157
+
```
158
+
159
+
**Note:** If you don't install the AWS extra, the AWS OIDC detector will gracefully skip itself with no errors. All other CI/CD platforms (GitHub Actions, GitLab CI, CircleCI, Azure DevOps, Bitbucket Pipelines, Jenkins) work without any extras.
160
+
137
161
## Configuration
138
162
139
163
There are two configuration files used by the CLI:
0 commit comments