Skip to content

Commit

Permalink
Move to github.com/Telekom-MMS/cmcc-operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Bethke committed Jun 4, 2024
1 parent 8594e1e commit ea1cb35
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![build](https://github.com/Telekom-MMS/cmcc-operator/actions/workflows/build.yml/badge.svg)](https://github.com/Telekom-MMS/cmcc-operator/actions/workflows/build.yml)

**Important** On June 11, 2024, this repo will move from T-Systems-MMS/cmcc-operator to Telekom-MMS/cmcc-operator. While Github will automatically redirect requests for the Git repo, the Helm repo URL has to be adjusted manually.
**Important** Since June 4, 2024, this repo has moved from T-Systems-MMS/cmcc-operator to Telekom-MMS/cmcc-operator. While Github will automatically redirect requests for the Git repo, the Helm repo URL has to be adjusted manually.

In particular, you will need to update your Helm repo URL like this:
```shell
Expand All @@ -22,7 +22,7 @@ helm repo update
* [Installing the Operator](#preparing-your-cluster-and-installing-the-operator)
* [Using the Operator to create a CoreMedia installation](#using-the-operator): quick start
* [Customizing the CMCC Operator](docs/customizing-the-operator.md): information for developers
* [ghcr.io/t-systems-mms/cmcc-operator/cmcc-operator](https://github.com/Telekom-MMS/cmcc-operator/pkgs/container/cmcc-operator%2Fcmcc-operator) Docker Image
* [ghcr.io/telekom-mms/cmcc-operator/cmcc-operator](https://github.com/Telekom-MMS/cmcc-operator/pkgs/container/cmcc-operator%2Fcmcc-operator) Docker Image
* [Cluster Roles and Rights](docs/cluster-roles.md) that the operator requires.

## Table of Contents
Expand Down
2 changes: 1 addition & 1 deletion charts/cmcc-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The command removes all the Kubernetes components associated with the chart and
| `cmcc.useCrd` | Should the operator find deployment configuration for a CMCC install in a custom resource of type `CoreMediaContentCloud`? | `true` |
| `clusterRole.create` | Whether to create a ClusterRole with appropriate rights for the operator to work cluster-wide | `true` |
| `image.pullPolicy` | The pull policy to apply to the image | `IfNotPresent` |
| `image.repository` | The repository to pull the operator image from. | `ghcr.io/t-systems-mms/cmcc-operator/cmcc-operator` |
| `image.repository` | The repository to pull the operator image from. | `ghcr.io/telekom-mms/cmcc-operator/cmcc-operator` |
| `image.tag` | The image tag to use | As set in the chart, typically corresponds with the chart version. |
| `imagePullSecrets` | Pull secrets to add to the deployment. Uses the namespace default service account and its pull secrets by default. | `""` |
| `fullnameOverride` | Overrides the full name of components, which is used for the deployment, clusterrole and clusterrolemapping, and the service account. | the chart name plus the release name |
Expand Down
2 changes: 1 addition & 1 deletion charts/cmcc-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cmcc:
useCrd: true

image:
repository: ghcr.io/t-systems-mms/cmcc-operator/cmcc-operator
repository: ghcr.io/telekom-mms/cmcc-operator/cmcc-operator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
Expand Down
2 changes: 1 addition & 1 deletion docs/customizing-the-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ Finally, the package `com.tsystemsmms.cmcc.cmccoperator.resource` contains class
## Build and deploy the operator locally

```shell
./gradlew build jibDockerBuild -Djib.to.image=ghcr.io/t-systems-mms/cmcc-operator/cmcc-operator -Djib.to.tag=v1.11.1 -Djib.from.platforms=linux/arm64
./gradlew build jibDockerBuild -Djib.to.image=ghcr.io/telekom-mms/cmcc-operator/cmcc-operator -Djib.to.tag=v1.11.1 -Djib.from.platforms=linux/arm64
helm upgrade --install --create-namespace --namespace cmcc-operator cmcc-operator ./charts/cmcc-operator --set cmcc.ingressbuilder=onlylang --set image.tag=v1.11.1
```
2 changes: 1 addition & 1 deletion k8s/cmcc-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
serviceAccountName: cmcc-operator
containers:
- name: operator
image: ghcr.io/t-systems-mms/cmcc-operator/cmcc-operator:latest
image: ghcr.io/telekom-mms/cmcc-operator/cmcc-operator:latest
imagePullPolicy: Always
env:
- name: CMCC_INGRESSBUILDER
Expand Down

0 comments on commit ea1cb35

Please sign in to comment.