Skip to content

Commit 4877ea9

Browse files
Fix Broken Images And Give Portal "RELEASE_VERSION" in Configmap (#69)
* Add RELEASE_VERSION to corrino-configmap and update locals for configuration management * update image svg
1 parent 828cbb9 commit 4877ea9

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
OCI AI Blueprints is a streamlined, no-code solution for deploying and managing Generative AI workloads on Kubernetes Engine (OKE). By providing opinionated hardware recommendations, pre-packaged software stacks, and out-of-the-box observability tooling, OCI AI Blueprints helps you get your AI applications running quickly and efficiently—without wrestling with the complexities of infrastructure decisions, software compatibility, and MLOps best practices.
66

7-
[![Install OCI AI Blueprints](https://raw.githubusercontent.com/oracle-quickstart/oci-ai-blueprints/9d1d61b3b79e61dabe19d1672c3e54704b294a93/docs/images/install.svg)](./GETTING_STARTED_README.md)
7+
[![Install OCI AI Blueprints](https://raw.githubusercontent.com/oracle-quickstart/oci-ai-blueprints/refs/heads/main/docs/images/install.svg)](./GETTING_STARTED_README.md)
88

99
## Table of Contents
1010

@@ -38,7 +38,7 @@ OCI AI Blueprints is a streamlined, no-code solution for deploying and managing
3838

3939
Install OCI AI Blueprints by clicking on the button below:
4040

41-
[![Install OCI AI Blueprints](https://raw.githubusercontent.com/oracle-quickstart/oci-ai-blueprints/9d1d61b3b79e61dabe19d1672c3e54704b294a93/docs/images/install.svg)](./GETTING_STARTED_README.md)
41+
[![Install OCI AI Blueprints](https://raw.githubusercontent.com/oracle-quickstart/oci-ai-blueprints/refs/heads/main/docs/images/install.svg)](./GETTING_STARTED_README.md)
4242

4343
## Blueprints
4444

@@ -52,7 +52,7 @@ After you install OCI AI Blueprints to an OKE cluster in your tenancy, you can d
5252

5353
| Blueprint | Description |
5454
| --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
55-
| [**LLM & VLM Inference with vLLM**](docs/sample_blueprints/llm_inference_with_vllm/README.md) | Deploy Llama 2/3/3.1 7B/8B models using NVIDIA GPU shapes and the vLLM inference engine with auto-scaling. |
55+
| [**LLM & VLM Inference with vLLM**](docs/sample_blueprints/llm_inference_with_vllm/README.md) | Deploy Llama 2/3/3.1 7B/8B models using NVIDIA GPU shapes and the vLLM inference engine with auto-scaling. |
5656
| [**Fine-Tuning Benchmarking**](./docs/sample_blueprints/lora-benchmarking) | Run MLCommons quantized Llama-2 70B LoRA finetuning on A100 for performance benchmarking. |
5757
| [**LoRA Fine-Tuning**](./docs/sample_blueprints/lora-fine-tuning) | LoRA fine-tuning of custom or HuggingFace models using any dataset. Includes flexible hyperparameter tuning. |
5858
| [**Health Check**](./docs/sample_blueprints/gpu-health-check) | Comprehensive evaluation of GPU performance to ensure optimal hardware readiness before initiating any intensive computational workload. |

oci_ai_blueprints_terraform/app-configmap.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ resource "kubernetes_config_map" "corrino-configmap" {
1111
BACKEND_SERVICE_NAME = local.app.backend_service_name
1212
COMPARTMENT_ID = local.oci.compartment_id
1313
CONTROL_PLANE_VERSION = var.stack_version
14+
RELEASE_VERSION = var.stack_version
1415
DJANGO_ALLOWED_HOSTS = local.django.allowed_hosts
1516
DJANGO_CSRF_TRUSTED_ORIGINS = local.django.csrf_trusted_origins
1617
DJANGO_SECRET = local.django.secret

oci_ai_blueprints_terraform/locals.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,11 @@ locals {
356356
name = "PROMETHEUS_NAMESPACE"
357357
config_map_name = "corrino-configmap"
358358
config_map_key = "PROMETHEUS_NAMESPACE"
359+
},
360+
{
361+
name = "RELEASE_VERSION"
362+
config_map_name = "corrino-configmap"
363+
config_map_key = "RELEASE_VERSION"
359364
}
360365
]
361366

0 commit comments

Comments
 (0)