From 9dcc3cbe8e01b030bee4e114f492f8362d3261ef Mon Sep 17 00:00:00 2001 From: Mat Kowalski Date: Wed, 16 Mar 2022 15:59:47 +0100 Subject: [PATCH] assisted-service: Add imageStorage to the service configuration With https://github.com/openshift/assisted-service/pull/3067 we have introduced an `imageStorage` configuration option that needs to be set in the AgentServiceConfig for Infrastructure Operator. This PR adds the configuration, so that `make assisted` target can deploy the operator seamlessly. --- assisted_deployment.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assisted_deployment.sh b/assisted_deployment.sh index c90ff1ee5..1af096ca4 100755 --- a/assisted_deployment.sh +++ b/assisted_deployment.sh @@ -253,6 +253,13 @@ spec: resources: requests: storage: 8Gi + imageStorage: + storageClassName: assisted-service + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 10Gi EOF }