Skip to content

Commit

Permalink
Switch to ghcr.io images as default
Browse files Browse the repository at this point in the history
  • Loading branch information
loafoe committed Jun 5, 2023
1 parent 9b6446f commit c69b50e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,21 +105,21 @@ module "thanos" {
| <a name="input_tenants"></a> [tenants](#input\_tenants) | The list of tenants to scrape. When an app does not specify tenant then 'default' is used | `list(string)` | <pre>[<br> "default"<br>]</pre> | no |
| <a name="input_thanos_compactor_disk_quota"></a> [thanos\_compactor\_disk\_quota](#input\_thanos\_compactor\_disk\_quota) | Thanos disk quota | `number` | `5000` | no |
| <a name="input_thanos_compactor_enabled"></a> [thanos\_compactor\_enabled](#input\_thanos\_compactor\_enabled) | Enable or disable the Thanos compactor component | `bool` | `true` | no |
| <a name="input_thanos_compactor_image"></a> [thanos\_compactor\_image](#input\_thanos\_compactor\_image) | Image to use for Thanos compactor. Use a v* tagged version to prevent automatic updates | `string` | `"philipslabs/cf-thanos:v6.1.0"` | no |
| <a name="input_thanos_compactor_image"></a> [thanos\_compactor\_image](#input\_thanos\_compactor\_image) | Image to use for Thanos compactor. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.3.1"` | no |
| <a name="input_thanos_compactor_memory"></a> [thanos\_compactor\_memory](#input\_thanos\_compactor\_memory) | Thanos store memory | `number` | `1024` | no |
| <a name="input_thanos_disk_quota"></a> [thanos\_disk\_quota](#input\_thanos\_disk\_quota) | Thanos disk quota | `number` | `5000` | no |
| <a name="input_thanos_extra_config"></a> [thanos\_extra\_config](#input\_thanos\_extra\_config) | Any extra yaml config that will be merged into the prometheus config at runtime. Extra targets can be added here. | `string` | `""` | no |
| <a name="input_thanos_file_sd_url"></a> [thanos\_file\_sd\_url](#input\_thanos\_file\_sd\_url) | A URL that exposes a prometheus file\_sd yaml file will be periodically downloaded and used for service discovery | `string` | `""` | no |
| <a name="input_thanos_image"></a> [thanos\_image](#input\_thanos\_image) | Image to use for Thanos app. Use a v* tagged version to prevent automatic updates | `string` | `"philipslabs/cf-thanos:v6.1.0"` | no |
| <a name="input_thanos_image"></a> [thanos\_image](#input\_thanos\_image) | Image to use for Thanos app. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.3.1"` | no |
| <a name="input_thanos_memory"></a> [thanos\_memory](#input\_thanos\_memory) | Thanos memory | `number` | `1024` | no |
| <a name="input_thanos_public_endpoints"></a> [thanos\_public\_endpoints](#input\_thanos\_public\_endpoints) | Make Thanos public endpoint | `bool` | `false` | no |
| <a name="input_thanos_query_image"></a> [thanos\_query\_image](#input\_thanos\_query\_image) | Image to use for Thanos query. Use a v* tagged version to prevent automatic updates | `string` | `"philipslabs/cf-thanos:v6.1.0"` | no |
| <a name="input_thanos_query_image"></a> [thanos\_query\_image](#input\_thanos\_query\_image) | Image to use for Thanos query. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.3.1"` | no |
| <a name="input_thanos_query_memory"></a> [thanos\_query\_memory](#input\_thanos\_query\_memory) | Thanos memory | `number` | `1024` | no |
| <a name="input_thanos_query_service_bindings"></a> [thanos\_query\_service\_bindings](#input\_thanos\_query\_service\_bindings) | A list of service instances that should be bound to the thanos app | `list(object({ service_instance = string }))` | `[]` | no |
| <a name="input_thanos_service_bindings"></a> [thanos\_service\_bindings](#input\_thanos\_service\_bindings) | A list of service instances that should be bound to the thanos app | `list(object({ service_instance = string }))` | `[]` | no |
| <a name="input_thanos_storage_tsdb_retention_time"></a> [thanos\_storage\_tsdb\_retention\_time](#input\_thanos\_storage\_tsdb\_retention\_time) | Thanos storage tsdb retention time | `string` | `"2h"` | no |
| <a name="input_thanos_store_disk_quota"></a> [thanos\_store\_disk\_quota](#input\_thanos\_store\_disk\_quota) | Thanos store disk quota | `number` | `5000` | no |
| <a name="input_thanos_store_image"></a> [thanos\_store\_image](#input\_thanos\_store\_image) | Image to use for Thanos store. Use a v* tagged version to prevent automatic updates | `string` | `"philipslabs/cf-thanos:v6.1.0"` | no |
| <a name="input_thanos_store_image"></a> [thanos\_store\_image](#input\_thanos\_store\_image) | Image to use for Thanos store. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.3.1"` | no |
| <a name="input_thanos_store_memory"></a> [thanos\_store\_memory](#input\_thanos\_store\_memory) | Thanos store memory | `number` | `1536` | no |
| <a name="input_thanos_store_service_bindings"></a> [thanos\_store\_service\_bindings](#input\_thanos\_store\_service\_bindings) | A list of service instances that should be bound to the thanos\_store app | `list(object({ service_instance = string }))` | `[]` | no |

Expand Down
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@ variable "name_postfix" {

variable "thanos_image" {
description = "Image to use for Thanos app. Use a v* tagged version to prevent automatic updates"
default = "philipslabs/cf-thanos:v6.1.0"
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.3.1"
type = string
}

variable "thanos_query_image" {
description = "Image to use for Thanos query. Use a v* tagged version to prevent automatic updates"
default = "philipslabs/cf-thanos:v6.1.0"
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.3.1"
type = string
}

variable "thanos_store_image" {
description = "Image to use for Thanos store. Use a v* tagged version to prevent automatic updates"
default = "philipslabs/cf-thanos:v6.1.0"
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.3.1"
type = string
}

variable "thanos_compactor_image" {
description = "Image to use for Thanos compactor. Use a v* tagged version to prevent automatic updates"
default = "philipslabs/cf-thanos:v6.1.0"
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.3.1"
type = string
}

Expand Down

0 comments on commit c69b50e

Please sign in to comment.