Skip to content

Commit c84bf9f

Browse files
authored
chore(docs): bump version in release calendar, kubernetes install docs (#15737)
1 parent 14ce3aa commit c84bf9f

File tree

3 files changed

+49
-7
lines changed

3 files changed

+49
-7
lines changed

docs/install/kubernetes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ We support two release channels: mainline and stable - read the
129129
helm install coder coder-v2/coder \
130130
--namespace coder \
131131
--values values.yaml \
132-
--version 2.17.2
132+
--version 2.18.0
133133
```
134134

135135
- **Stable** Coder release:
@@ -140,7 +140,7 @@ We support two release channels: mainline and stable - read the
140140
helm install coder coder-v2/coder \
141141
--namespace coder \
142142
--values values.yaml \
143-
--version 2.16.1
143+
--version 2.17.2
144144
```
145145

146146
You can watch Coder start up by running `kubectl get pods -n coder`. Once Coder

docs/install/releases.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ pages.
5454

5555
| Release name | Release Date | Status |
5656
| ------------ | ------------------ | ---------------- |
57-
| 2.11.x | May 07, 2024 | Not Supported |
5857
| 2.12.x | June 04, 2024 | Not Supported |
5958
| 2.13.x | July 02, 2024 | Not Supported |
6059
| 2.14.x | August 06, 2024 | Not Supported |
61-
| 2.15.x | September 03, 2024 | Security Support |
62-
| 2.16.x | October 01, 2024 | Stable |
63-
| 2.17.x | November 05, 2024 | Mainline |
64-
| 2.18.x | December 03, 2024 | Not Released |
60+
| 2.15.x | September 03, 2024 | Not Supported |
61+
| 2.16.x | October 01, 2024 | Security Support |
62+
| 2.17.x | November 05, 2024 | Stable |
63+
| 2.18.x | December 03, 2024 | Mainline |
64+
| 2.19.x | January 07, 2024 | Not Released |
6565

6666
> **Tip**: We publish a
6767
> [`preview`](https://github.com/coder/coder/pkgs/container/coder-preview) image

scratch/resourcepool-gcp-disk/main.tf

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
terraform {
2+
required_providers {
3+
coder = {
4+
source = "coder/coder"
5+
}
6+
google = {
7+
source = "hashicorp/google"
8+
}
9+
}
10+
}
11+
12+
locals {
13+
name = "matifali"
14+
project_id = "coder-dev-1"
15+
zone = "asia-south1-a"
16+
}
17+
18+
provider "random" {}
19+
20+
provider "google" {
21+
zone = local.zone
22+
project = local.project_id
23+
}
24+
25+
resource "random_string" "disk_name" {
26+
length = 16
27+
special = false
28+
upper = false
29+
numeric = false
30+
}
31+
32+
resource "google_compute_disk" "example_disk" {
33+
name = "${local.name}disk-${random_string.disk_name.result}"
34+
type = "pd-standard"
35+
size = 3 # Disk size in GB
36+
}
37+
38+
resource "coder_pool_resource_claimable" "prebuilt_disk" {
39+
other {
40+
instance_id = google_compute_disk.example_disk.id
41+
}
42+
}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy