Skip to content

Commit

Permalink
Changes for new branch quinteros
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryguy committed Aug 12, 2023
1 parent 4d323ab commit 7e61c1e
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bin/build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

TAG=latest
TAG=latest-quinteros

ARCH=`uname -m`

Expand Down
2 changes: 1 addition & 1 deletion bin/remove_images
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e

TAG=latest
TAG=latest-quinteros

while getopts "t:r:h" opt; do
case $opt in
Expand Down
2 changes: 1 addition & 1 deletion images/manageiq-base-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FROM_REPO=manageiq
ARG FROM_TAG=latest
ARG FROM_TAG=latest-quinteros

FROM ${FROM_REPO}/manageiq-base:${FROM_TAG} AS vddk

Expand Down
2 changes: 1 addition & 1 deletion images/manageiq-orchestrator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FROM_REPO=manageiq
ARG FROM_TAG=latest
ARG FROM_TAG=latest-quinteros

FROM ${FROM_REPO}/manageiq-base:${FROM_TAG}
MAINTAINER ManageIQ https://manageiq.org
Expand Down
2 changes: 1 addition & 1 deletion images/manageiq-ui-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FROM_REPO=manageiq
ARG FROM_TAG=latest
ARG FROM_TAG=latest-quinteros

FROM ${FROM_REPO}/manageiq-webserver-worker:${FROM_TAG}
MAINTAINER ManageIQ https://manageiq.org
Expand Down
2 changes: 1 addition & 1 deletion images/manageiq-webserver-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FROM_REPO=manageiq
ARG FROM_TAG=latest
ARG FROM_TAG=latest-quinteros

FROM ${FROM_REPO}/manageiq-base-worker:${FROM_TAG}
MAINTAINER ManageIQ https://manageiq.org
Expand Down
2 changes: 1 addition & 1 deletion manageiq-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ There are three different ways the operator can be run.
2 - Update the operator deployment yaml file with your custom image:

```bash
$ sed -i 's|docker.io/manageiq/manageiq-operator:latest|docker.io/<your_username_or_organization>/manageiq-operator:latest|g' config/manager/manager.yaml
$ sed -i 's|docker.io/manageiq/manageiq-operator:latest-quinteros|docker.io/<your_username_or_organization>/manageiq-operator:latest-quinteros|g' config/manager/manager.yaml
```

3 - Run your custom image from the registry:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ func orchestratorImageNamespace(cr *miqv1alpha1.ManageIQ) string {

func orchestratorImageTag(cr *miqv1alpha1.ManageIQ) string {
if cr.Spec.OrchestratorImageTag == "" {
return "latest"
return "latest-quinteros"
} else {
return cr.Spec.OrchestratorImageTag
}
Expand Down
2 changes: 1 addition & 1 deletion manageiq-operator/api/v1alpha1/manageiq_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ type ManageIQSpec struct {
// +optional
OrchestratorImageNamespace string `json:"orchestratorImageNamespace,omitempty"`

// Deprecated: Image tag used for the orchestrator and worker deployments (default: latest)
// Deprecated: Image tag used for the orchestrator and worker deployments (default: latest-quinteros)
// +optional
OrchestratorImageTag string `json:"orchestratorImageTag,omitempty"`

Expand Down
2 changes: 1 addition & 1 deletion manageiq-operator/config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
serviceAccountName: manageiq-operator
containers:
- name: manageiq-operator
image: docker.io/manageiq/manageiq-operator:latest
image: docker.io/manageiq/manageiq-operator:latest-quinteros
imagePullPolicy: Always
env:
- name: WATCH_NAMESPACE
Expand Down

0 comments on commit 7e61c1e

Please sign in to comment.