Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First version of the PKI Gapi english #58

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
533 changes: 533 additions & 0 deletions content/en/post/pki-gapi/index.md

Large diffs are not rendered by default.

Binary file added content/en/post/pki-gapi/lets-encrypt-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/en/post/pki-gapi/pki-gapi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/en/post/pki-gapi/three-tier-pki.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/en/post/pki-gapi/thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/en/post/pki-gapi/vault-issuer.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/en/post/pki-gapi/vault-login.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/en/post/pki-gapi/vault-seq.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions content/fr/post/pki-gapi/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
+++
author = "Smaine Kahlouch"
title = "`TLS` avec Gateway API: Une gestion efficace et sécurisée des certificats publiques et privés"
date = "2024-01-30"
date = "2024-02-01"
summary = "Dans cet article nous allons construire une stratégie de PKI solide permettant de gérer des certificats TLS publiques et privés en utilisant `Cert-Manager`, `Vault` et `Let's Encrypt`"
featured = true
codeMaxLines = 21
Expand All @@ -13,7 +13,7 @@ tags = [
thumbnail= "thumbnail.png"
+++

Le **chiffrement TLS** est un standard incontournable dans la sécurisation des services et applications, que ce soit sur Internet ou au sein même de l'entreprise. Sur Internet, le recours à un certificat TLS, validé par une autorité de certification reconnue, est essentiel pour garantir la confidentialité et l'intégrité des échanges de données.
Le **chiffrement TLS** est un standard incontournable dans la sécurisation des services et applications, que ce soit sur Internet ou au sein même de l'entreprise. Sur Internet, le recours à un certificat TLS, validé par une autorité de certification reconnue, est essentiel pour garantir la confidentialité des échanges de données.

En ce qui concerne les communications internes, la PKI privée (**Private Public Key Infrastructure**) joue un rôle crucial dans la distribution et la validation des certificats nécessaires au chiffrement des communications au sein de l'entreprise, assurant ainsi une sécurité renforcée.

Expand Down Expand Up @@ -263,7 +263,7 @@ spec:
featureGates: ExperimentalGatewayAPISupport=true
```

Il est aussi nécessaire de donner les permissions au contrôleur Cert-manager d'interagir avec Route53 pour pouvoir compléter le challenge DNS. [Ici](https://github.com/Smana/demo-cloud-native-ref/blob/main/security/base/cert-manager/irsa.yaml) j'utilise une `Composition` Crossplane. (ℹ️ Si vous souhaitez creuser le sujet c'est [par ici](http://localhost:1313/fr/post/crossplane_composition_functions/).)
Il est aussi nécessaire de donner les permissions au contrôleur Cert-manager d'interagir avec Route53 pour pouvoir compléter le challenge DNS. [Ici](https://github.com/Smana/demo-cloud-native-ref/blob/main/security/base/cert-manager/irsa.yaml) j'utilise une `Composition` Crossplane. (ℹ️ Si vous souhaitez creuser le sujet c'est [par ici](https://blog.ogenki.io/fr/post/crossplane_composition_functions/).)

Puis il faut ajouter l'annotation dans la Gateway et indiquer le secret cible.

Expand Down
Loading