This is an automated email from the ASF dual-hosted git repository.
zfeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-seata-k8s.git
The following commit(s) were added to refs/heads/master by this push:
new 9262731 fix Migrate the k8s image version (#34)
9262731 is described below
commit 92627314bf79b5b88c64951633ece45e4ba0b60d
Author: FengZhang <[email protected]>
AuthorDate: Sat Sep 27 20:04:13 2025 +0800
fix Migrate the k8s image version (#34)
* Migrate the k8s image version
* add license header
---
README.md | 4 ++--
README.zh.md | 4 ++--
api/v1alpha1/seataserver_types.go | 4 ++--
.../bases/operator.seata.apache.org_seataservers.yaml | 2 +-
deploy/seata-server-cluster.yaml | 2 +-
deploy/seata-server-standalone.yaml | 2 +-
docs/developerGuide.md | 17 ++++++++++++++++-
docs/developerGuide.zh.md | 4 ++--
8 files changed, 27 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
index d6a8401..565a93b 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ To deploy Seata Server using the Operator method, follow
these steps:
spec:
serviceName: seata-server-cluster
replicas: 3
- image: seataio/seata-server:latest
+ image: apache/seata-server:latest
persistence:
volumeReclaimPolicy: Retain
spec:
@@ -92,7 +92,7 @@ For CRD details, you can visit
[operator.seata.apache.org_seataservers.yaml](con
name: seata-server
namespace: default
spec:
- image: seataio/seata-server:latest
+ image: apache/seata-server:latest
store:
resources:
requests:
diff --git a/README.zh.md b/README.zh.md
index a36eb1a..aa1498f 100755
--- a/README.zh.md
+++ b/README.zh.md
@@ -58,7 +58,7 @@ https://github.com/seata/seata-docker
spec:
serviceName: seata-server-cluster
replicas: 3
- image: seataio/seata-server:latest
+ image: apache/seata-server:latest
persistence:
volumeReclaimPolicy: Retain
spec:
@@ -97,7 +97,7 @@ https://github.com/seata/seata-docker
name: seata-server
namespace: default
spec:
- image: seataio/seata-server:latest
+ image: apache/seata-server:latest
store:
resources:
requests:
diff --git a/api/v1alpha1/seataserver_types.go
b/api/v1alpha1/seataserver_types.go
index ee1c253..ae42604 100644
--- a/api/v1alpha1/seataserver_types.go
+++ b/api/v1alpha1/seataserver_types.go
@@ -25,7 +25,7 @@ import (
const (
DefaultSeataSessionStorageVolumeSize = "5Gi"
- DefaultSeataServerImage = "seataio/seata-server:latest"
+ DefaultSeataServerImage = "apache/seata-server:latest"
)
// SeataServerSpec defines the desired state of SeataServer
@@ -135,7 +135,7 @@ type ContainerSpec struct {
// +kubebuilder:default=seata-server
ContainerName string `json:"containerName"`
// +kubebuilder:validation:Optional
- // +kubebuilder:default="seataio/seata-server:latest"
+ // +kubebuilder:default="apache/seata-server:latest"
Image string `json:"image"`
// +kubebuilder:validation:Optional
Env []apiv1.EnvVar `json:"env"`
diff --git a/config/crd/bases/operator.seata.apache.org_seataservers.yaml
b/config/crd/bases/operator.seata.apache.org_seataservers.yaml
index 92d9542..4b13581 100644
--- a/config/crd/bases/operator.seata.apache.org_seataservers.yaml
+++ b/config/crd/bases/operator.seata.apache.org_seataservers.yaml
@@ -162,7 +162,7 @@ spec:
type: object
type: array
image:
- default: seataio/seata-server:latest
+ default: apache/seata-server:latest
type: string
persistence:
properties:
diff --git a/deploy/seata-server-cluster.yaml b/deploy/seata-server-cluster.yaml
index d20075b..eeae664 100644
--- a/deploy/seata-server-cluster.yaml
+++ b/deploy/seata-server-cluster.yaml
@@ -23,7 +23,7 @@ metadata:
spec:
serviceName: seata-server-cluster
replicas: 1
- image: seataio/seata-server:latest
+ image: apache/seata-server:latest
persistence:
volumeReclaimPolicy: Delete
store:
diff --git a/deploy/seata-server-standalone.yaml
b/deploy/seata-server-standalone.yaml
index 8a64535..47b08a2 100644
--- a/deploy/seata-server-standalone.yaml
+++ b/deploy/seata-server-standalone.yaml
@@ -57,7 +57,7 @@ spec:
spec:
containers:
- name: seata-server
- image: docker.io/seataio/seata-server:1.7.0
+ image: apache/seata-server:latest
imagePullPolicy: IfNotPresent
env:
- name: SEATA_PORT
diff --git a/docs/developerGuide.md b/docs/developerGuide.md
index f6d8c11..0e3016a 100644
--- a/docs/developerGuide.md
+++ b/docs/developerGuide.md
@@ -1,3 +1,18 @@
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
# Seata - Kubernetes Developer Guide
# Introduction
@@ -80,7 +95,7 @@ metadata:
spec:
serviceName: seata-server-cluster
replicas: 1
- image: seataio/seata-server:latest
+ image: apache/seata-server:latest
persistence:
volumeReclaimPolicy: Delete
store:
diff --git a/docs/developerGuide.zh.md b/docs/developerGuide.zh.md
index a6fa830..f2dc8cf 100644
--- a/docs/developerGuide.zh.md
+++ b/docs/developerGuide.zh.md
@@ -72,7 +72,7 @@ metadata:
name: test-seata-server
spec:
replicas: 1
- image: seataio/seata-server:latest
+ image: apache/seata-server:latest
serviceName: seata-server-cluster
persistence:
volumeReclaimPolicy: Delete
@@ -147,7 +147,7 @@ metadata:
spec:
serviceName: seata-server-cluster
replicas: 1
- image: seataio/seata-server:latest
+ image: apache/seata-server:latest
persistence:
volumeReclaimPolicy: Delete
store:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]