Compare commits

..

2 Commits

Author SHA1 Message Date
7a7ce1bcbd use just busybox for image
Some checks failed
Build and Publish / build-release (push) Failing after 17m40s
2026-04-13 15:42:40 -05:00
044486ba74 use default storage class 2026-04-13 15:32:23 -05:00
3 changed files with 5 additions and 11 deletions

View File

@@ -32,16 +32,12 @@
};
dockerImage = pkgs.dockerTools.buildImage {
name = "policy_service";
fromImageName = "hexpm/elixir";
fromImageTag = "1.17.5-erlang-27.0-debian-bookworm-20240612";
copyToRoot = pkgs.buildEnv {
name = "policy-service";
paths = [ package ];
pathsToLink = [ "/bin" ];
};
contents = [
package
pkgs.busybox
];
config = {
Cmd = [ "/bin/bash" ];
WorkingDir = "/";
Cmd = [ "${package}/bin/policy_service" "start" ];
};
};
in

View File

@@ -20,7 +20,6 @@ spec:
owner: {{ .Values.postgresql.owner | default "policy_service" }}
storage:
storageClass: {{ .Values.postgresql.storageClass | default "local-path" }}
size: {{ .Values.postgresql.storageSize | default "1Gi" }}
resources:

View File

@@ -86,7 +86,6 @@ postgresql:
instances: 1
database: policy_service
owner: policy_service
storageClass: local-path
storageSize: 1Gi
resources:
requests: