@@ -45,9 +45,6 @@ const (
4545
4646 // KeystoneAPIContainerImage is the fall-back container image for KeystoneAPI
4747 KeystoneAPIContainerImage = "quay.io/podified-antelope-centos9/openstack-keystone:current-podified"
48-
49- // KeystoneFernetRotationContainerImage is the fall-back container image for Keystone Fernet Rotation
50- KeystoneFernetRotationContainerImage = "registry.redhat.io/openshift4/ose-cli"
5148)
5249
5350type KeystoneAPISpec struct {
@@ -56,9 +53,6 @@ type KeystoneAPISpec struct {
5653 // +kubebuilder:validation:Required
5754 // Keystone Container Image URL (will be set to environmental default if empty)
5855 ContainerImage string `json:"containerImage"`
59- // +kubebuilder:validation:Required
60- // Keystone Fernet Rotation Container Image URL (will be set to environmental default if empty)
61- FernetRotationContainerImage string `json:"fernetRotationContainerImage"`
6256}
6357
6458// KeystoneAPISpec defines the desired state of KeystoneAPI
@@ -289,7 +283,6 @@ func SetupDefaults() {
289283 // Acquire environmental defaults and initialize Keystone defaults with them
290284 keystoneDefaults := KeystoneAPIDefaults {
291285 ContainerImageURL : util .GetEnvVar ("RELATED_IMAGE_KEYSTONE_API_IMAGE_URL_DEFAULT" , KeystoneAPIContainerImage ),
292- FernetRotationContainerImageURL : util .GetEnvVar ("RELATED_IMAGE_KEYSTONE_FERNET_ROTATION_IMAGE_URL_DEFAULT" , KeystoneFernetRotationContainerImage ),
293286 }
294287
295288 SetupKeystoneAPIDefaults (keystoneDefaults )
0 commit comments