From 15304c9a09f5ef4c7bd8445f8b8a9b9df0f409da Mon Sep 17 00:00:00 2001 From: CorneilleEdi Date: Sun, 8 Oct 2023 10:14:10 +0200 Subject: [PATCH] fix: error generating, topic not found --- assets/data/techs.json | 15 +++++++++++++++ assets/data/topics.json | 18 ++++++++++++++++++ assets/styles/content.scss | 3 ++- content/posts/gcp/cloud-run-helm.md | 13 +++++-------- content/posts/nest/nest-test-containers.md | 2 +- 5 files changed, 41 insertions(+), 10 deletions(-) diff --git a/assets/data/techs.json b/assets/data/techs.json index 7f0316a..b3c33f2 100755 --- a/assets/data/techs.json +++ b/assets/data/techs.json @@ -32,6 +32,21 @@ "image": "docker.svg", "description": "Plateforme de conteneurisation" }, + { + "name": "Kubernetes", + "image": "kubernetes.svg", + "description": "Container orchestration" + }, + { + "name": "Prometheus", + "image": "prometheus.svg", + "description": "Monitoring system" + }, + { + "name": "Grafana", + "image": "grafana.svg", + "description": "Analytics & Interactive visualization " + }, { "name": "Github", "image": "github.svg", diff --git a/assets/data/topics.json b/assets/data/topics.json index 82fd5f8..a916d4d 100755 --- a/assets/data/topics.json +++ b/assets/data/topics.json @@ -37,6 +37,24 @@ "description": "Plateforme de conteneurisation", "primary": true }, + { + "name": "Kubernetes", + "image": "kubernetes.svg", + "description": "Container orchestration", + "primary": true + }, + { + "name": "Prometheus", + "image": "prometheus.svg", + "description": "Monitoring system", + "primary": true + }, + { + "name": "Grafana", + "image": "grafana.svg", + "description": "Analytics & Interactive visualization ", + "primary": true + }, { "name": "Github", "image": "github.svg", diff --git a/assets/styles/content.scss b/assets/styles/content.scss index c8f7989..4cf7ffc 100644 --- a/assets/styles/content.scss +++ b/assets/styles/content.scss @@ -165,7 +165,7 @@ } ul { - @apply my-4 list-disc text-left ; + @apply my-4 ml-8 list-disc text-left ; li { @apply my-4 ml-4 text-dark dark:text-white dark:text-opacity-80 font-thin; @@ -246,3 +246,4 @@ } } } + diff --git a/content/posts/gcp/cloud-run-helm.md b/content/posts/gcp/cloud-run-helm.md index 4d60e16..b6f77f1 100644 --- a/content/posts/gcp/cloud-run-helm.md +++ b/content/posts/gcp/cloud-run-helm.md @@ -2,7 +2,7 @@ title: Déployer sur Cloud Run avec Helm description: "Générer les configurations de déploiement d'un service sur Cloud Run avec Helm" tags: [ gcp, helm, docker ] -topics: [ gcp, helm, docker ] +topics: [ gcp, docker ] date: 2023-07-22 slug: deployer-sur-cloud-run-avec-helm --- @@ -144,13 +144,10 @@ Voici la structure de notre charte (kind of) -- values.yaml ``` -`service.yaml` : le template de la configuration du service que nous voulons déployer - -`values.yaml` : valeurs par défaut a appliqué - -`values_dev.yaml` : valeurs a appliqué en développement - -`Chart.yaml` : information à propos de la charte (version, type, description) +- `service.yaml` : le template de la configuration du service que nous voulons déployer +- `values.yaml` : valeurs par défaut a appliqué +- `values_dev.yaml` : valeurs a appliqué en développement +- `Chart.yaml` : information à propos de la charte (version, type, description) Les fichiers sous le dossier `values` ne sont là que pour le déploiement local. Dans la deuxième partie, nous les retirons avant de publier notre charte Helm. diff --git a/content/posts/nest/nest-test-containers.md b/content/posts/nest/nest-test-containers.md index a177a6e..f019797 100644 --- a/content/posts/nest/nest-test-containers.md +++ b/content/posts/nest/nest-test-containers.md @@ -2,7 +2,7 @@ title: NestJS - Facilitez les tests d’intégration avec Docker et TestContainers description: Configurer facilement les tests d'intégration à l'aide de testcontainers et de Docker tags: [nest, docker, test, mongodb] -topics: [nestjs, docker, mongodb, testing] +topics: [nestjs, docker, mongodb] date: 2022-05-02 slug: nestjs-facilitez-les-tests-dintegration-plus-simplement-avec-docker-et-testcontainers ---