Skip to content

Commit

Permalink
feat: rabbitmq operator
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-ni committed Aug 15, 2024
1 parent bd1a9fa commit 98ac76f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions kubernetes/core/rabbitmq-operator.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{ transpire, ... }:

{
namespaces.rabbitmq-operator = {
helmReleases.rabbitmq-operator = {
chart = transpire.fetchFromHelm {
repo = "https://charts.bitnami.com/bitnami";
name = "rabbitmq-cluster-operator";
version = "4.3.18";
sha256 = "8QwU58eWyWPIU2Xy4Z1Vx6TOf+CQRtjIOTx22EI4Nik=";
};

includeCRDs = true;
};
};
}

0 comments on commit 98ac76f

Please sign in to comment.