Skip to content

Commit

Permalink
fix: error generating, topic not found
Browse files Browse the repository at this point in the history
  • Loading branch information
CorneilleEdi committed Oct 8, 2023
1 parent 02394cf commit 15304c9
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 10 deletions.
15 changes: 15 additions & 0 deletions assets/data/techs.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
18 changes: 18 additions & 0 deletions assets/data/topics.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion assets/styles/content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -246,3 +246,4 @@
}
}
}

13 changes: 5 additions & 8 deletions content/posts/gcp/cloud-run-helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion content/posts/nest/nest-test-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---
Expand Down

0 comments on commit 15304c9

Please sign in to comment.