Skip to content

Commit 3eac89a

Browse files
authored
Merge branch 'main' into automation/vendor-portal-release-notes-v2024.02.21-1
2 parents c301d2b + 6ea58dc commit 3eac89a

File tree

8 files changed

+91
-8
lines changed

8 files changed

+91
-8
lines changed

docs/reference/replicated-cli-customer-create.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,22 @@ replicated customer create [Flags]
3838
<td>duration</td>
3939
<td>If set, license will expire a specified number of units from the current time. For example, <code>2h</code> or <code>1h60m</code> or <code>120m</code> are all the same duration.</td>
4040
</tr>
41+
<tr>
42+
<td><code>--custom-id</code></td>
43+
<td>string</td>
44+
<td>If set, this custom alphanumeric ID is associated with this customer to more easily tie this record to your external data systems (i.e. Salesforce, Hubspot, etc.) </td>
45+
</tr>
4146
<Help/>
4247
<App/>
4348
<Token/>
4449
</table>
4550

4651
## Examples
4752
```bash
48-
replicated customer create --channel Megacorp_Beta --name "Megacorp" --ensure-channel --expires-in "8760h"
49-
ID NAME CHANNELS EXPIRES TYPE
50-
2u4KGXSY65SAUW0ltG_pPhxBGPJ4XNSS Megacorp Megacorp_Beta 2021-01-20 00:17:38 +0000 UTC dev
53+
replicated customer create --channel Megacorp_Beta --name "Megacorp" --ensure-channel --expires-in "8760h" --custom-id "salesforceid-123"
54+
```
55+
56+
```bash
57+
ID NAME CHANNELS EXPIRES TYPE CUSTOM_ID
58+
2u4KGXSY65SAUW0ltG_pPhxBGPJ4XNSS Megacorp Megacorp_Beta 2021-01-20 00:17:38 +0000 UTC dev salesforceid-123
5159
```

docs/reference/replicated-cli-customer-ls.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ List all customers:
2929

3030
```bash
3131
replicated customer ls
32-
ID NAME CHANNELS EXPIRES TYPE
33-
iEgJuVDHy2pi-AqOjLXbZCTX9bqlV6YH John Smith Unstable Never
34-
YAg7ripYbK0tM5MVn_81nMy0YrhBsHrm Megacorp Megacorp_Beta Never
32+
ID NAME CHANNELS EXPIRES TYPE CUSTOM_ID
33+
iEgJuVDHy2pi-AqOjLXbZCTX9bqlV6YH John Smith Unstable Never Not Set
34+
YAg7ripYbK0tM5MVn_81nMy0YrhBsHrm Megacorp Megacorp_Beta Never salesforceid-123
3535
```
3636

3737
List customers and their instances for a specific application version:
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
import App from "../partials/replicated-cli/_app.mdx"
2+
import SkipValidation from "../partials/replicated-cli/_skip-validation.mdx"
3+
import Token from "../partials/replicated-cli/_token.mdx"
4+
import Help from "../partials/replicated-cli/_help.mdx"
5+
6+
# registry add gar
7+
8+
Adds a Google Artifact Registry (GAR) using a service account key or token.
9+
10+
## Usage
11+
12+
```bash
13+
replicated registry add gar [flags]
14+
```
15+
16+
The following flags are supported:
17+
18+
<table>
19+
<tr>
20+
<th width="30%">Flag</th>
21+
<th width="20%">Type (if applicable)</th>
22+
<th width="50%">Description</th>
23+
</tr>
24+
<App/>
25+
<Help/>
26+
<tr>
27+
<td><code>--serviceaccountkey</code></td>
28+
<td>string</td>
29+
<td>The service account key to use when authenticating to the registry.</td>
30+
</tr>
31+
<tr>
32+
<td><code>--serviceaccountkey-stdin</code></td>
33+
<td></td>
34+
<td>Take the service account key from stdin.</td>
35+
</tr>
36+
<tr>
37+
<td><code>--token</code></td>
38+
<td>string</td>
39+
<td>The Google Cloud OAuth token to use when authenticating to the registry.</td>
40+
</tr>
41+
<tr>
42+
<td><code>--token-stdin</code></td>
43+
<td></td>
44+
<td>Takes the Google Cloud OAuth token from stdin.</td>
45+
</tr>
46+
<SkipValidation/>
47+
</table>

docs/reference/replicated-cli-registry-add.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ The following `registry add` commands are supported:
2828
<td><a href="replicated-cli-registry-add-ecr"><code>replicated registry add ecr</code></a></td>
2929
<td>Adds an Amazon Elastic Container Registry (ECR).</td>
3030
</tr>
31+
<tr>
32+
<td><a href="replicated-cli-registry-add-gar"><code>replicated registry add gar</code></a></td>
33+
<td>Adds a Google Artifact Registry (GAR).</td>
34+
</tr>
3135
<tr>
3236
<td><a href="replicated-cli-registry-add-gcr"><code>replicated registry add gcr</code></a></td>
3337
<td>Adds a Google Container Registry (GCR).</td>

docs/release-notes/rn-app-manager.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ The following table lists the versions of Kubernetes that are compatible with ea
1616

1717
<!--RELEASE_NOTES_PLACEHOLDER-->
1818

19+
## 1.107.6
20+
21+
Released on February 22, 2024
22+
23+
Support for Kubernetes: 1.26, 1.27, 1.28, and 1.29
24+
25+
### Improvements {#improvements-1-107-6}
26+
* UI improvements when running in an embedded cluster (Alpha)
27+
1928
## 1.107.5
2029

2130
Released on February 20, 2024

docs/release-notes/rn-vendor-platform.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,20 @@ Released on February 21, 2024
1717
* Adds the AKS Standard_D2ps_v5 and higher instance types.
1818
* Labels and comments on support cases with EOL addons in kURL installer specs embedded in application releases.
1919

20+
## v2024.02.21-0
21+
22+
Released on February 21, 2024
23+
24+
### New Features {#new-features-v2024-02-21-0}
25+
* Adds release info to the **Support bundle analysis** page.
26+
27+
## v2024.02.19-0
28+
29+
Released on February 19, 2024
30+
31+
### New Features {#new-features-v2024-02-19-0}
32+
* Adds support for Node Groups on the **Cluster History** page.
33+
2034
## v2024.02.14-0
2135

2236
Released on February 14, 2024

docs/vendor/testing-supported-clusters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ The compatibility matrix supports creating [AWS EKS](https://aws.amazon.com/eks/
189189
</tr>
190190
<tr>
191191
<th>Supported Instance Types</th>
192-
<td>m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m7i.large, m7i.xlarge, m7i.2xlarge, m7i.4xlarge, m7i.8xlarge, m7g.large, m7g.xlarge, m7g.2xlarge, m7g.4xlarge, m7g.8xlarge</td>
192+
<td><p>m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m7i.large, m7i.xlarge, m7i.2xlarge, m7i.4xlarge, m7i.8xlarge, m7g.large, m7g.xlarge, m7g.2xlarge, m7g.4xlarge, m7g.8xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge</p><p>g4dn instance types depend on available capacity.</p></td>
193193
</tr>
194194
<tr>
195195
<th>Node Groups</th>
@@ -259,7 +259,7 @@ The compatibility matrix supports creating [Azure AKS](https://azure.microsoft.c
259259
</tr>
260260
<tr>
261261
<th>Supported Instance Types</th>
262-
<td><p>Standard_B2ms, Standard_B4ms, Standard_B8ms, Standard_B16ms</p><p>You can specify more than one node.</p></td>
262+
<td><p>Standard_B2ms, Standard_B4ms, Standard_B8ms, Standard_B16ms, Standard_D2ps_v5, Standard_D4ps_v5, Standard_D8ps_v5, Standard_D16ps_v5, Standard_D32ps_v5, Standard_D48ps_v5</p><p>You can specify more than one node.</p></td>
263263
</tr>
264264
<tr>
265265
<th>Node Groups</th>

sidebars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -726,6 +726,7 @@ const sidebars = {
726726
'reference/replicated-cli-registry-add',
727727
'reference/replicated-cli-registry-add-dockerhub',
728728
'reference/replicated-cli-registry-add-ecr',
729+
'reference/replicated-cli-registry-add-gar',
729730
'reference/replicated-cli-registry-add-gcr',
730731
'reference/replicated-cli-registry-add-ghcr',
731732
'reference/replicated-cli-registry-add-other',

0 commit comments

Comments
 (0)