mirror of
https://github.com/coder/coder.git
synced 2025-03-15 10:17:09 +00:00
chore(docs): bump version in release calendar, kubernetes install docs (#15737)
This commit is contained in:
@ -129,7 +129,7 @@ We support two release channels: mainline and stable - read the
|
||||
helm install coder coder-v2/coder \
|
||||
--namespace coder \
|
||||
--values values.yaml \
|
||||
--version 2.17.2
|
||||
--version 2.18.0
|
||||
```
|
||||
|
||||
- **Stable** Coder release:
|
||||
@ -140,7 +140,7 @@ We support two release channels: mainline and stable - read the
|
||||
helm install coder coder-v2/coder \
|
||||
--namespace coder \
|
||||
--values values.yaml \
|
||||
--version 2.16.1
|
||||
--version 2.17.2
|
||||
```
|
||||
|
||||
You can watch Coder start up by running `kubectl get pods -n coder`. Once Coder
|
||||
|
@ -54,14 +54,14 @@ pages.
|
||||
|
||||
| Release name | Release Date | Status |
|
||||
| ------------ | ------------------ | ---------------- |
|
||||
| 2.11.x | May 07, 2024 | Not Supported |
|
||||
| 2.12.x | June 04, 2024 | Not Supported |
|
||||
| 2.13.x | July 02, 2024 | Not Supported |
|
||||
| 2.14.x | August 06, 2024 | Not Supported |
|
||||
| 2.15.x | September 03, 2024 | Security Support |
|
||||
| 2.16.x | October 01, 2024 | Stable |
|
||||
| 2.17.x | November 05, 2024 | Mainline |
|
||||
| 2.18.x | December 03, 2024 | Not Released |
|
||||
| 2.15.x | September 03, 2024 | Not Supported |
|
||||
| 2.16.x | October 01, 2024 | Security Support |
|
||||
| 2.17.x | November 05, 2024 | Stable |
|
||||
| 2.18.x | December 03, 2024 | Mainline |
|
||||
| 2.19.x | January 07, 2024 | Not Released |
|
||||
|
||||
> **Tip**: We publish a
|
||||
> [`preview`](https://github.com/coder/coder/pkgs/container/coder-preview) image
|
||||
|
42
scratch/resourcepool-gcp-disk/main.tf
Normal file
42
scratch/resourcepool-gcp-disk/main.tf
Normal file
@ -0,0 +1,42 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
coder = {
|
||||
source = "coder/coder"
|
||||
}
|
||||
google = {
|
||||
source = "hashicorp/google"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
locals {
|
||||
name = "matifali"
|
||||
project_id = "coder-dev-1"
|
||||
zone = "asia-south1-a"
|
||||
}
|
||||
|
||||
provider "random" {}
|
||||
|
||||
provider "google" {
|
||||
zone = local.zone
|
||||
project = local.project_id
|
||||
}
|
||||
|
||||
resource "random_string" "disk_name" {
|
||||
length = 16
|
||||
special = false
|
||||
upper = false
|
||||
numeric = false
|
||||
}
|
||||
|
||||
resource "google_compute_disk" "example_disk" {
|
||||
name = "${local.name}disk-${random_string.disk_name.result}"
|
||||
type = "pd-standard"
|
||||
size = 3 # Disk size in GB
|
||||
}
|
||||
|
||||
resource "coder_pool_resource_claimable" "prebuilt_disk" {
|
||||
other {
|
||||
instance_id = google_compute_disk.example_disk.id
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user