Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/examples/clowdapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
enabled: true
# Give details about your running pod
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e

# Request kafka topics for your application here
kafkaTopics:
Expand Down
2 changes: 1 addition & 1 deletion docs/providers/cronjob.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
- name: inventory
schedule: "* * * * */5"
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/cloudservices/clowder-hello
```

## ClowdEnv Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/providers/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
deployments:
- name: service
podSpec:
name: quay.io/psav/clowder-hello
name: quay.io/cloudservices/clowder-hello
```

## ClowdEnv Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/providers/web.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
deployments:
name: inventory
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/cloudservices/clowder-hello
webServices:
public:
enabled: true
Expand Down
4 changes: 2 additions & 2 deletions docs/usage/app-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ apps:
repo: /path/to/your/git/repo
path: clowdapp.yml
parameters:
IMAGE: quay.io/psav/clowder-hello
IMAGE: quay.io/cloudservices/clowder-hello
```

This config instructs bonfire to fetch the template for your application from a git repo located on local disk.
Expand Down Expand Up @@ -89,7 +89,7 @@ objects:

parameters:
- name: IMAGE
value: quay.io/psav/clowder-hello
value: quay.io/cloudservices/clowder-hello
- name: IMAGE_TAG
value: latest
- name: ENV_NAME
Expand Down
4 changes: 2 additions & 2 deletions tests/kuttl/test-annotations-clowdapp/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
- name: processor-2
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
4 changes: 2 additions & 2 deletions tests/kuttl/test-annotations-deployment/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
annotations:
TestAnnotationDeploymentLevel: "Pretty Cool again"
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
- name: processor-no-annotation
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
6 changes: 3 additions & 3 deletions tests/kuttl/test-annotations-job/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
serviceAccountName: puptoo-app
containers:
- name: puptoo-standard-cron
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
restartPolicy: Never
tolerations:
- key: "memory"
Expand Down Expand Up @@ -82,7 +82,7 @@ spec:
serviceAccountName: puptoo-app
containers:
- name: puptoo-suspend-cron
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
restartPolicy: Never
---
apiVersion: batch/v1
Expand All @@ -106,7 +106,7 @@ spec:
serviceAccountName: puptoo-app
containers:
- name: puptoo-restart-on-failure
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
restartPolicy: OnFailure
---
apiVersion: batch/v1
Expand Down
8 changes: 4 additions & 4 deletions tests/kuttl/test-annotations-job/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
jobs:
- name: standard-cron
schedule: "*/1 * * * *"
Expand All @@ -54,7 +54,7 @@ spec:
failedJobsHistoryLimit: 2
activeDeadlineSeconds: 6000
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
args:
- ./clowder-hello
- boo
Expand All @@ -65,15 +65,15 @@ spec:
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 1
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
args:
- ./clowder-hello
- boo
- name: restart-on-failure
schedule: "*/1 * * * *"
restartPolicy: OnFailure
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
args:
- ./clowder-hello
- boo
Expand Down
2 changes: 1 addition & 1 deletion tests/kuttl/test-annotations-podspec/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ spec:
metadata:
annotations:
TestAnnotation: "Very Cool pod annotation"
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
2 changes: 1 addition & 1 deletion tests/kuttl/test-app-interface-s3/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
objectStore:
- test-app-interface-s3
- test-iam-s3
Expand Down
2 changes: 1 addition & 1 deletion tests/kuttl/test-autoscaler-keda/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
autoScaler:
maxReplicaCount: 3
triggers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
autoScaler:
maxReplicaCount: 3
triggers:
Expand Down
2 changes: 1 addition & 1 deletion tests/kuttl/test-autoscaler-simple/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
deployments:
- name: highram
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
autoScalerSimple:
replicas:
min: 1
Expand Down
6 changes: 3 additions & 3 deletions tests/kuttl/test-basic-app/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
env:
- name: ENV_VAR_1
value: env_var_1
Expand All @@ -65,7 +65,7 @@ spec:
enabled: true
- name: processor2
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
env:
- name: ENV_VAR_1
value: env_var_1
Expand All @@ -84,7 +84,7 @@ spec:
enabled: true
- name: processor3
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
env:
- name: ENV_VAR_1
value: env_var_1
Expand Down
2 changes: 1 addition & 1 deletion tests/kuttl/test-cji-disabled/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
jobs:
- name: hello-cji
podSpec:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
env:
- name: ENV_VAR_1
value: env_var_1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
env:
- name: ENV_VAR_1
value: env_var_1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
env:
- name: ENV_VAR_1
value: env_var_1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
env:
- name: ENV_VAR_1
value: env_var_1
Expand Down
2 changes: 1 addition & 1 deletion tests/kuttl/test-clowdapp-watcher-kafka-msk/03-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
kafkaTopics:
- replicas: 3
partitions: 64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
kafkaTopics:
- replicas: 7
partitions: 64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
env:
- name: ENV_VAR_1
value: env_var_1
2 changes: 1 addition & 1 deletion tests/kuttl/test-clowdapp-watcher-minio/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
objectStore:
- first-bucket
2 changes: 1 addition & 1 deletion tests/kuttl/test-clowdapp-watcher-pullsecrets/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
env:
- name: ENV_VAR_1
value: env_var_1
Expand Down
4 changes: 2 additions & 2 deletions tests/kuttl/test-clowdappref/01-pods.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
web: true
webServices:
public:
Expand All @@ -135,7 +135,7 @@ spec:
deployments:
- name: processor
podSpec:
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
web: true
dependencies:
- remote-app-tls
Expand Down
8 changes: 4 additions & 4 deletions tests/kuttl/test-clowder-jobs/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
serviceAccountName: puptoo-app
containers:
- name: puptoo-standard-cron
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
restartPolicy: Never
tolerations:
- key: "memory"
Expand Down Expand Up @@ -103,7 +103,7 @@ spec:
serviceAccountName: puptoo-app
containers:
- name: puptoo-suspend-cron
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
restartPolicy: Never
---
apiVersion: batch/v1
Expand Down Expand Up @@ -131,7 +131,7 @@ spec:
serviceAccountName: puptoo-app
containers:
- name: puptoo-parallel-cron
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
restartPolicy: Never
tolerations:
- key: "memory"
Expand All @@ -158,7 +158,7 @@ spec:
serviceAccountName: puptoo-app
containers:
- name: puptoo-restart-on-failure
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
restartPolicy: OnFailure
---
apiVersion: batch/v1
Expand Down
2 changes: 1 addition & 1 deletion tests/kuttl/test-clowder-jobs/01-errors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
serviceAccountName: puptoo-app
containers:
- name: puptoo-im-disabled
image: quay.io/psav/clowder-hello
image: quay.io/redhat-services-prod/hcm-eng-prod-tenant/clowder-e2e
---
apiVersion: batch/v1
kind: Job
Expand Down
Loading
Loading