Skip to content

Commit 0ca1011

Browse files
authored
move all images to quay.io, patch manifests, charts and versions #245 (#247)
1 parent 36e2bd3 commit 0ca1011

9 files changed

Lines changed: 18 additions & 18 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
2929
#
3030
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
3131
# opentelekomcloud.com/typesense-operator-bundle:$VERSION and opentelekomcloud.com/typesense-operator-catalog:$VERSION.
32-
IMAGE_TAG_BASE ?= akyriako78/typesense-operator
32+
IMAGE_TAG_BASE ?= quay.io/akyriako/typesense-operator
3333

3434
# BUNDLE_IMG defines the image:tag used for the bundle.
3535
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)
@@ -50,9 +50,9 @@ endif
5050
# This is useful for CI or a project to utilize a specific version of the operator-sdk toolkit.
5151
OPERATOR_SDK_VERSION ?= v1.39.0
5252
# Image URL to use all building/pushing image targets
53-
DOCKER_HUB_NAME ?= $(shell docker info | sed '/Username:/!d;s/.* //')
53+
DOCKER_HUB_NAME ?= quay.io/akyriako#$(shell docker info | sed '/Username:/!d;s/.* //')
5454
IMG_NAME ?= typesense-operator
55-
IMG_TAG ?= 0.4.0-rc.1
55+
IMG_TAG ?= 0.4.0-rc.3
5656
IMG ?= $(DOCKER_HUB_NAME)/$(IMG_NAME):$(IMG_TAG)
5757

5858
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Join the conversation:
228228
## 📦 Project Status
229229
230230
TyKO is an **independently maintained** project (not affiliated with Typesense, Inc.).
231-
- Latest version: **0.4.0-rc.1**
231+
- Latest version: **0.4.0-rc.3**
232232
- Tested on: Kubernetes 1.35 (earliest 1.26), Typesense 30.0 (earliest 26.0)
233233
- Contributions welcome! See [FAQ](https://akyriako.github.io/typesense-operator-docs/docs/faq) and [Development](https://akyriako.github.io/typesense-operator-docs/docs/development)
234234

api/v1alpha1/typesensecluster_types_healthcheck.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
type HealthCheckSpec struct {
99
// +kubebuilder:validation:Optional
10-
// +kubebuilder:default:="akyriako78/typesense-healthcheck:0.1.8"
10+
// +kubebuilder:default:="quay.io/akyriako/typesense-healthcheck:0.1.8"
1111
Image string `json:"image,omitempty"`
1212

1313
// +kubebuilder:validation:Optional
@@ -20,7 +20,7 @@ func (s *TypesenseClusterSpec) GetHealthCheckSidecarSpecs() HealthCheckSpec {
2020
}
2121

2222
return HealthCheckSpec{
23-
Image: "akyriako78/typesense-healthcheck:0.1.8",
23+
Image: "quay.io/akyriako/typesense-healthcheck:0.1.8",
2424
}
2525
}
2626

api/v1alpha1/typesensecluster_types_metrics.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type MetricsExporterSpec struct {
99
Release string `json:"release"`
1010

1111
// +kubebuilder:validation:Optional
12-
// +kubebuilder:default:="akyriako78/typesense-prometheus-exporter:0.1.9"
12+
// +kubebuilder:default:="quay.io/akyriako/typesense-prometheus-exporter:0.1.9"
1313
Image string `json:"image,omitempty"`
1414

1515
// +optional
@@ -32,7 +32,7 @@ func (s *TypesenseClusterSpec) GetMetricsExporterSpecs() MetricsExporterSpec {
3232

3333
return MetricsExporterSpec{
3434
Release: "promstack",
35-
Image: "akyriako78/typesense-prometheus-exporter:0.1.9",
35+
Image: "quay.io/akyriako/typesense-prometheus-exporter:0.1.9",
3636
IntervalInSeconds: 15,
3737
}
3838
}

charts/typesense-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ type: application
1414
# This is the chart version. This version number should be incremented each time you make changes
1515
# to the chart and its templates, including the app version.
1616
# Versions are expected to follow Semantic Versioning (https://semver.org/)
17-
version: 0.4.0-rc.1
17+
version: 0.4.0-rc.3
1818
# This is the version number of the application being deployed. This version number should be
1919
# incremented each time you make changes to the application. Versions are not expected to
2020
# follow Semantic Versioning. They should reflect the version the application is using.
2121
# It is recommended to use it with quotes.
22-
appVersion: "0.4.0-rc.1"
22+
appVersion: "0.4.0-rc.3"
2323

2424
maintainers:
2525
- name: Kyriakos Akriotis

charts/typesense-operator/templates/typesensecluster-crd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ spec:
10231023
healthcheck:
10241024
properties:
10251025
image:
1026-
default: akyriako78/typesense-healthcheck:0.1.8
1026+
default: quay.io/akyriako/typesense-healthcheck:0.1.8
10271027
type: string
10281028
resources:
10291029
description: ResourceRequirements describes the compute resource
@@ -3502,7 +3502,7 @@ spec:
35023502
metrics:
35033503
properties:
35043504
image:
3505-
default: akyriako78/typesense-prometheus-exporter:0.1.9
3505+
default: quay.io/akyriako/typesense-prometheus-exporter:0.1.9
35063506
type: string
35073507
interval:
35083508
default: 15

charts/typesense-operator/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ controllerManager:
1111
drop:
1212
- ALL
1313
image:
14-
repository: akyriako78/typesense-operator
15-
tag: 0.4.0-rc.1
14+
repository: quay.io/akyriako/typesense-operator
15+
tag: 0.4.0-rc.3
1616
imagePullPolicy: IfNotPresent
1717
resources:
1818
limits:

config/crd/bases/ts.opentelekomcloud.com_typesenseclusters.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ spec:
10231023
healthcheck:
10241024
properties:
10251025
image:
1026-
default: akyriako78/typesense-healthcheck:0.1.8
1026+
default: quay.io/akyriako/typesense-healthcheck:0.1.8
10271027
type: string
10281028
resources:
10291029
description: ResourceRequirements describes the compute resource
@@ -3505,7 +3505,7 @@ spec:
35053505
metrics:
35063506
properties:
35073507
image:
3508-
default: akyriako78/typesense-prometheus-exporter:0.1.9
3508+
default: quay.io/akyriako/typesense-prometheus-exporter:0.1.9
35093509
type: string
35103510
interval:
35113511
default: 15

config/manager/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
44
kind: Kustomization
55
images:
66
- name: controller
7-
newName: akyriako78/typesense-operator
8-
newTag: 0.4.0-rc.1
7+
newName: quay.io/akyriako/typesense-operator
8+
newTag: 0.4.0-rc.3

0 commit comments

Comments
 (0)