Meetup 2025-12-cloudnativepg
k apply -f postgres.yamlCREATE TABLE test_restauration (
id SERIAL PRIMARY KEY,
nom VARCHAR(100) NOT NULL,
date_creation TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
description TEXT
);
INSERT INTO test_restauration (nom, description)
VALUES ('Test de restauration', 'Cette ligne a été ajoutée avant la restauration du cluster.');
SELECT * FROM test_restauration;
k cnpg backup chatbotk cnpg promote chatbot chatbot-3k delete -f postgres.yamlk apply -f postgres-recovery.yaml