Skip to content

Commit a4753a3

Browse files
Use go 1.21.8 in workflows (#737)
* Use go 1.21.8 in workflows * Replace streamnative/pulsar-all to streamnative/sn-platform * Fix ci * Fix ci * Fix ci * Do not build images for OAuth2 ci * Bump runner image to 3.2.2.1 * Fix ci
1 parent 24ef57b commit a4753a3

File tree

69 files changed

+162
-143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+162
-143
lines changed

.ci/clusters/compute_v1alpha1_function.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: function-sample
55
namespace: default
66
spec:
7-
image: streamnative/pulsar-functions-java-sample:2.9.2.23
7+
image: streamnative/pulsar-functions-java-sample:3.2.2.1
88
className: org.apache.pulsar.functions.api.examples.ExclamationFunction
99
forwardSourceMessageProperty: true
1010
maxPendingAsyncRequests: 1000

.ci/clusters/compute_v1alpha1_function_builtin_hpa.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: function-builtin-hpa-sample
55
namespace: default
66
spec:
7-
image: streamnative/pulsar-functions-java-sample:2.9.2.23
7+
image: streamnative/pulsar-functions-java-sample:3.2.2.1
88
className: org.apache.pulsar.functions.api.examples.ExclamationFunction
99
forwardSourceMessageProperty: true
1010
maxPendingAsyncRequests: 1000

.ci/clusters/compute_v1alpha1_function_hpa.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: function-hpa-sample
55
namespace: default
66
spec:
7-
image: streamnative/pulsar-functions-java-sample:2.9.2.23
7+
image: streamnative/pulsar-functions-java-sample:3.2.2.1
88
className: org.apache.pulsar.functions.api.examples.ExclamationFunction
99
forwardSourceMessageProperty: true
1010
maxPendingAsyncRequests: 1000

.ci/clusters/compute_v1alpha1_function_stateful.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: python-function-stateful-sample
55
namespace: default
66
spec:
7-
image: streamnative/pulsar-functions-python-sample:2.9.2.23
7+
image: streamnative/pulsar-functions-python-sample:3.2.2.1
88
className: wordcount_function.WordCountFunction
99
forwardSourceMessageProperty: true
1010
maxPendingAsyncRequests: 1000

.ci/clusters/compute_v1alpha1_functionmesh.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
functions:
77
- name: java-function
8-
image: streamnative/pulsar-functions-java-sample:2.9.2.23
8+
image: streamnative/pulsar-functions-java-sample:3.2.2.1
99
className: org.apache.pulsar.functions.api.examples.ExclamationFunction
1010
replicas: 1
1111
maxReplicas: 1
@@ -31,7 +31,7 @@ spec:
3131
memory: 1.1G
3232
clusterName: test
3333
- name: golang-function
34-
image: streamnative/pulsar-functions-go-sample:2.9.2.23
34+
image: streamnative/pulsar-functions-go-sample:3.2.2.1
3535
replicas: 1
3636
maxReplicas: 1
3737
input:
@@ -56,7 +56,7 @@ spec:
5656
memory: 1.1G
5757
clusterName: test
5858
- name: python-function
59-
image: streamnative/pulsar-functions-python-sample:2.9.2.23
59+
image: streamnative/pulsar-functions-python-sample:3.2.2.1
6060
className: exclamation_function.ExclamationFunction
6161
replicas: 1
6262
maxReplicas: 1

.ci/clusters/compute_v1alpha1_go_function.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: go-function-sample
55
namespace: default
66
spec:
7-
image: streamnative/pulsar-functions-go-sample:2.9.2.23
7+
image: streamnative/pulsar-functions-go-sample:3.2.2.1
88
forwardSourceMessageProperty: true
99
maxPendingAsyncRequests: 1000
1010
replicas: 1

.ci/clusters/compute_v1alpha1_py_function.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: py-function-sample
55
namespace: default
66
spec:
7-
image: streamnative/pulsar-functions-python-sample:2.9.2.23
7+
image: streamnative/pulsar-functions-python-sample:3.2.2.1
88
className: exclamation_function.ExclamationFunction
99
forwardSourceMessageProperty: true
1010
maxPendingAsyncRequests: 1000

.ci/clusters/values.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,25 @@ monitoring:
4444

4545
images:
4646
zookeeper:
47-
repository: streamnative/pulsar-all
47+
repository: streamnative/sn-platform
4848
tag: 2.9.2.23
4949
bookie:
50-
repository: streamnative/pulsar-all
50+
repository: streamnative/sn-platform
5151
tag: 2.9.2.23
5252
autorecovery:
53-
repository: streamnative/pulsar-all
53+
repository: streamnative/sn-platform
5454
tag: 2.9.2.23
5555
broker:
56-
repository: streamnative/pulsar-all
56+
repository: streamnative/sn-platform
5757
tag: 2.9.2.23
5858
functions:
59-
repository: streamnative/pulsar-all
59+
repository: streamnative/sn-platform
6060
tag: 2.9.2.23
6161
proxy:
62-
repository: streamnative/pulsar-all
62+
repository: streamnative/sn-platform
6363
tag: 2.9.2.23
6464
presto:
65-
repository: streamnative/pulsar-all
65+
repository: streamnative/sn-platform
6666
tag: 2.9.2.23
6767

6868
zookeeper:
@@ -73,7 +73,7 @@ bookkeeper:
7373
replicaCount: 0
7474
metadata:
7575
image:
76-
repository: streamnative/pulsar-all
76+
repository: streamnative/sn-platform
7777
tag: 2.9.2.23
7878
configData:
7979
PULSAR_PREFIX_autoRecoveryDaemonEnabled: "false"
@@ -107,7 +107,7 @@ bookkeeper:
107107
108108
pulsar_metadata:
109109
image:
110-
repository: streamnative/pulsar-all
110+
repository: streamnative/sn-platform
111111
tag: 2.9.2.23
112112

113113
broker:

.ci/clusters/values_cluster.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,22 @@ monitoring:
4141

4242
images:
4343
zookeeper:
44-
repository: streamnative/pulsar-all
44+
repository: streamnative/sn-platform
4545
tag: 2.10.0.0-rc10
4646
bookie:
47-
repository: streamnative/pulsar-all
47+
repository: streamnative/sn-platform
4848
tag: 2.10.0.0-rc10
4949
autorecovery:
50-
repository: streamnative/pulsar-all
50+
repository: streamnative/sn-platform
5151
tag: 2.10.0.0-rc10
5252
broker:
53-
repository: streamnative/pulsar-all
53+
repository: streamnative/sn-platform
5454
tag: 2.10.0.0-rc10
5555
functions:
56-
repository: streamnative/pulsar-all
56+
repository: streamnative/sn-platform
5757
tag: 2.10.0.0-rc10
5858
proxy:
59-
repository: streamnative/pulsar-all
59+
repository: streamnative/sn-platform
6060
tag: 2.10.0.0-rc10
6161

6262
zookeeper:
@@ -66,7 +66,7 @@ bookkeeper:
6666
replicaCount: 1
6767
metadata:
6868
image:
69-
repository: streamnative/pulsar-all
69+
repository: streamnative/sn-platform
7070
tag: 2.10.0.0-rc10
7171
configData:
7272
# `BOOKIE_MEM` is used for `bookie shell`
@@ -96,7 +96,7 @@ bookkeeper:
9696
9797
pulsar_metadata:
9898
image:
99-
repository: streamnative/pulsar-all
99+
repository: streamnative/sn-platform
100100
tag: 2.10.0.0-rc10
101101

102102
broker:

.ci/clusters/values_custom_runner_images.yaml

+11-11
Original file line numberDiff line numberDiff line change
@@ -40,27 +40,27 @@ monitoring:
4040

4141
images:
4242
zookeeper:
43-
repository: streamnative/pulsar-all
43+
repository: streamnative/sn-platform
4444
tag: 2.9.2.23
4545
pullPolicy: IfNotPresent
4646
bookie:
47-
repository: streamnative/pulsar-all
47+
repository: streamnative/sn-platform
4848
tag: 2.9.2.23
4949
pullPolicy: IfNotPresent
5050
autorecovery:
51-
repository: streamnative/pulsar-all
51+
repository: streamnative/sn-platform
5252
tag: 2.9.2.23
5353
pullPolicy: IfNotPresent
5454
broker:
55-
repository: streamnative/pulsar-all
55+
repository: streamnative/sn-platform
5656
tag: 2.9.2.23
5757
pullPolicy: IfNotPresent
5858
proxy:
59-
repository: streamnative/pulsar-all
59+
repository: streamnative/sn-platform
6060
tag: 2.9.2.23
6161
pullPolicy: IfNotPresent
6262
functions:
63-
repository: streamnative/pulsar-all
63+
repository: streamnative/sn-platform
6464
tag: 2.9.2.23
6565
pullPolicy: IfNotPresent
6666

@@ -71,7 +71,7 @@ bookkeeper:
7171
replicaCount: 1
7272
metadata:
7373
image:
74-
repository: streamnative/pulsar-all
74+
repository: streamnative/sn-platform
7575
tag: 2.9.2.23
7676
configData:
7777
PULSAR_PREFIX_autoRecoveryDaemonEnabled: "false"
@@ -108,7 +108,7 @@ bookkeeper:
108108
109109
pulsar_metadata:
110110
image:
111-
repository: streamnative/pulsar-all
111+
repository: streamnative/sn-platform
112112
tag: 2.9.2.23
113113
pullPolicy: IfNotPresent
114114

@@ -157,9 +157,9 @@ functions:
157157
narExtractionDirectory: ""
158158
functionRuntimeFactoryConfigs:
159159
functionDockerImages:
160-
JAVA: "streamnative/pulsar-functions-java-runner:2.9.2.23"
161-
PYTHON: "streamnative/pulsar-functions-python-runner:2.9.2.23"
162-
GO: "streamnative/pulsar-functions-go-runner:2.9.2.23"
160+
JAVA: "streamnative/pulsar-functions-java-runner:3.2.2.1"
161+
PYTHON: "streamnative/pulsar-functions-python-runner:3.2.2.1"
162+
GO: "streamnative/pulsar-functions-go-runner:3.2.2.1"
163163

164164
proxy:
165165
replicaCount: 1

.ci/clusters/values_runner_images.yaml

+12-12
Original file line numberDiff line numberDiff line change
@@ -40,31 +40,31 @@ monitoring:
4040

4141
images:
4242
zookeeper:
43-
repository: streamnative/pulsar-all
43+
repository: streamnative/sn-platform
4444
tag: 2.9.2.23
4545
pullPolicy: IfNotPresent
4646
bookie:
47-
repository: streamnative/pulsar-all
47+
repository: streamnative/sn-platform
4848
tag: 2.9.2.23
4949
pullPolicy: IfNotPresent
5050
autorecovery:
51-
repository: streamnative/pulsar-all
51+
repository: streamnative/sn-platform
5252
tag: 2.9.2.23
5353
pullPolicy: IfNotPresent
5454
broker:
55-
repository: streamnative/pulsar-all
55+
repository: streamnative/sn-platform
5656
tag: 2.9.2.23
5757
pullPolicy: IfNotPresent
5858
proxy:
59-
repository: streamnative/pulsar-all
59+
repository: streamnative/sn-platform
6060
tag: 2.9.2.23
6161
pullPolicy: IfNotPresent
6262
functions:
63-
repository: streamnative/pulsar-all
63+
repository: streamnative/sn-platform
6464
tag: 2.9.2.23
6565
pullPolicy: IfNotPresent
6666
presto:
67-
repository: streamnative/pulsar-all
67+
repository: streamnative/sn-platform
6868
tag: 2.9.2.23
6969
pullPolicy: IfNotPresent
7070

@@ -75,7 +75,7 @@ bookkeeper:
7575
replicaCount: 0
7676
metadata:
7777
image:
78-
repository: streamnative/pulsar-all
78+
repository: streamnative/sn-platform
7979
tag: 2.9.2.23
8080
configData:
8181
PULSAR_PREFIX_autoRecoveryDaemonEnabled: "false"
@@ -109,7 +109,7 @@ bookkeeper:
109109
110110
pulsar_metadata:
111111
image:
112-
repository: streamnative/pulsar-all
112+
repository: streamnative/sn-platform
113113
tag: 2.9.2.23
114114
pullPolicy: IfNotPresent
115115

@@ -172,9 +172,9 @@ functions:
172172
disk: 1048576000
173173
functionRuntimeFactoryConfigs:
174174
functionDockerImages:
175-
JAVA: "localhost:5000/pulsar-functions-java-runner:2.9.2.23"
176-
PYTHON: "localhost:5000/pulsar-functions-python-runner:2.9.2.23"
177-
GO: "localhost:5000/pulsar-functions-go-runner:2.9.2.23"
175+
JAVA: "localhost:5000/pulsar-functions-java-runner:3.2.2.1"
176+
PYTHON: "localhost:5000/pulsar-functions-python-runner:3.2.2.1"
177+
GO: "localhost:5000/pulsar-functions-go-runner:3.2.2.1"
178178
functionInstanceMinResources:
179179
cpu: 0.1
180180
ram: 10485760

.ci/clusters/values_skywalking_e2e_cluster.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ monitoring:
4343

4444
images:
4545
zookeeper:
46-
repository: streamnative/pulsar-all
46+
repository: streamnative/sn-platform
4747
tag: 2.9.2.23
4848
bookie:
49-
repository: streamnative/pulsar-all
49+
repository: streamnative/sn-platform
5050
tag: 2.9.2.23
5151
broker:
52-
repository: streamnative/pulsar-all
52+
repository: streamnative/sn-platform
5353
tag: 2.9.2.23
5454
functions:
55-
repository: streamnative/pulsar-all
55+
repository: streamnative/sn-platform
5656
tag: 2.9.2.23
5757

5858
zookeeper:
@@ -66,7 +66,7 @@ bookkeeper:
6666
replicaCount: 0
6767
metadata:
6868
image:
69-
repository: streamnative/pulsar-all
69+
repository: streamnative/sn-platform
7070
tag: 2.9.2.23
7171
resources:
7272
requests:
@@ -104,7 +104,7 @@ bookkeeper:
104104
105105
pulsar_metadata:
106106
image:
107-
repository: streamnative/pulsar-all
107+
repository: streamnative/sn-platform
108108
tag: 2.9.2.23
109109

110110
broker:

.ci/clusters/values_skywalking_e2e_cluster_with_oauth.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ bookkeeper:
6666
replicaCount: 0
6767
metadata:
6868
image:
69-
repository: streamnative/pulsar-all
69+
repository: streamnative/sn-platform
7070
tag: 2.9.2.23
7171
resources:
7272
requests:
@@ -104,7 +104,7 @@ bookkeeper:
104104
105105
pulsar_metadata:
106106
image:
107-
repository: streamnative/pulsar-all
107+
repository: streamnative/sn-platform
108108
tag: 2.9.2.23
109109

110110
broker:

0 commit comments

Comments
 (0)