Skip to content

Commit 89dff47

Browse files
build(deps): bump pipy from 1.5.9 to 1.5.10 (#772)
Signed-off-by: Lin Yang <reaver@flomesh.io>
1 parent 47fb34e commit 89dff47

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

charts/fsm/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -435,11 +435,11 @@ The following table lists the configurable parameters of the fsm chart and their
435435
| fsm.remoteLogging.port | int | `30514` | Port of the remote logging service |
436436
| fsm.remoteLogging.sampledFraction | string | `"1.0"` | Sampled Fraction |
437437
| fsm.remoteLogging.secretName | string | `"fsm-remote-logging-secret"` | Secret Name |
438-
| fsm.repoServer | object | `{"codebase":"","image":{"name":"pipy-repo","registry":"flomesh","tag":"1.5.9"},"ipaddr":"127.0.0.1","port":6060,"standalone":false}` | Pipy RepoServer |
438+
| fsm.repoServer | object | `{"codebase":"","image":{"name":"pipy-repo","registry":"flomesh","tag":"1.5.10"},"ipaddr":"127.0.0.1","port":6060,"standalone":false}` | Pipy RepoServer |
439439
| fsm.repoServer.codebase | string | `""` | codebase is the folder used by fsmController. |
440440
| fsm.repoServer.image.name | string | `"pipy-repo"` | Repo server image name |
441441
| fsm.repoServer.image.registry | string | `"flomesh"` | Registry for repo server image |
442-
| fsm.repoServer.image.tag | string | `"1.5.9"` | Repo server image tag |
442+
| fsm.repoServer.image.tag | string | `"1.5.10"` | Repo server image tag |
443443
| fsm.repoServer.ipaddr | string | `"127.0.0.1"` | ipaddr of host/service where Pipy RepoServer is installed |
444444
| fsm.repoServer.port | int | `6060` | port of pipy RepoServer |
445445
| fsm.repoServer.standalone | bool | `false` | if false , Pipy RepoServer is installed within fsmController pod. |
@@ -448,13 +448,13 @@ The following table lists the configurable parameters of the fsm chart and their
448448
| fsm.serviceLB.image.name | string | `"mirrored-klipper-lb"` | service-lb image name |
449449
| fsm.serviceLB.image.registry | string | `"flomesh"` | Registry for service-lb image |
450450
| fsm.serviceLB.image.tag | string | `"v0.4.7"` | service-lb image tag |
451-
| fsm.sidecar | object | `{"compressConfig":true,"gracefulExitUntilDownstreamEnds":true,"holdApplicationUntilProxyStarts":true,"image":{"name":"pipy","registry":"flomesh","tag":"1.5.9"},"sidecarDisabledMTLS":false,"sidecarLogLevel":"error","sidecarTimeout":60}` | Sidecar supported by fsm |
451+
| fsm.sidecar | object | `{"compressConfig":true,"gracefulExitUntilDownstreamEnds":true,"holdApplicationUntilProxyStarts":true,"image":{"name":"pipy","registry":"flomesh","tag":"1.5.10"},"sidecarDisabledMTLS":false,"sidecarLogLevel":"error","sidecarTimeout":60}` | Sidecar supported by fsm |
452452
| fsm.sidecar.compressConfig | bool | `true` | Sidecar compresses config.json |
453453
| fsm.sidecar.gracefulExitUntilDownstreamEnds | bool | `true` | This feature delays the pod proxy exit until active downstream connections end. |
454454
| fsm.sidecar.holdApplicationUntilProxyStarts | bool | `true` | This feature delays application startup until the pod proxy is ready to accept traffic, mitigating some startup race conditions. |
455455
| fsm.sidecar.image.name | string | `"pipy"` | Sidecar image name |
456456
| fsm.sidecar.image.registry | string | `"flomesh"` | Registry for sidecar image |
457-
| fsm.sidecar.image.tag | string | `"1.5.9"` | Sidecar image tag |
457+
| fsm.sidecar.image.tag | string | `"1.5.10"` | Sidecar image tag |
458458
| fsm.sidecar.sidecarDisabledMTLS | bool | `false` | Sidecar runs without mTLS |
459459
| fsm.sidecar.sidecarLogLevel | string | `"error"` | Log level for the proxy sidecar. Non developers should generally never set this value. In production environments the LogLevel should be set to `error` |
460460
| fsm.sidecar.sidecarTimeout | int | `60` | Sets connect/idle/read/write timeout |

charts/fsm/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ fsm:
8080
# -- Sidecar image name
8181
name: pipy
8282
# -- Sidecar image tag
83-
tag: 1.5.9
83+
tag: 1.5.10
8484
# -- Sidecar runs without mTLS
8585
sidecarDisabledMTLS: false
8686
# -- Sidecar compresses config.json
@@ -102,7 +102,7 @@ fsm:
102102
# -- Repo server image name
103103
name: pipy-repo
104104
# -- Repo server image tag
105-
tag: 1.5.9
105+
tag: 1.5.10
106106
# -- if false , Pipy RepoServer is installed within fsmController pod.
107107
standalone: false
108108
# -- ipaddr of host/service where Pipy RepoServer is installed

cmd/fsm-bootstrap/crds/config.flomesh.io_meshconfigs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1749,7 +1749,7 @@ spec:
17491749
description: Misc defines the configurations of misc info
17501750
properties:
17511751
repoServerImage:
1752-
default: flomesh/pipy-repo:1.5.9
1752+
default: flomesh/pipy-repo:1.5.10
17531753
description: RepoServerImage defines the image of repo server.
17541754
type: string
17551755
required:

dockerfiles/Dockerfile.fsm-gateway

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
2424
CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -v -o bin/fsm-gateway -ldflags "$LDFLAGS" ./cmd/fsm-gateway
2525

2626
# Build the final image
27-
FROM flomesh/pipy:1.5.9-$DISTROLESS_TAG
27+
FROM flomesh/pipy:1.5.10-$DISTROLESS_TAG
2828
WORKDIR /
2929
COPY --from=builder /fsm/bin/fsm-gateway .
3030

dockerfiles/Dockerfile.fsm-ingress

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
2424
CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -v -o bin/fsm-ingress -ldflags "$LDFLAGS" ./cmd/fsm-ingress
2525

2626
# Build the final image
27-
FROM flomesh/pipy:1.5.9-$DISTROLESS_TAG
27+
FROM flomesh/pipy:1.5.10-$DISTROLESS_TAG
2828
WORKDIR /
2929
COPY --from=builder /fsm/bin/fsm-ingress .
3030

docs/tests/gateway-api/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ spec:
304304
spec:
305305
containers:
306306
- name: pipy
307-
image: flomesh/pipy:1.5.9
307+
image: flomesh/pipy:1.5.10
308308
ports:
309309
- name: pipy
310310
containerPort: 8080
@@ -402,7 +402,7 @@ spec:
402402
spec:
403403
containers:
404404
- name: pipy
405-
image: flomesh/pipy:1.5.9
405+
image: flomesh/pipy:1.5.10
406406
ports:
407407
- name: pipy
408408
containerPort: 8080

pkg/apis/config/v1alpha3/mesh_config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ type ImageSpec struct {
856856

857857
// MiscSpec is the type to represent misc configs.
858858
type MiscSpec struct {
859-
// +kubebuilder:default="flomesh/pipy-repo:1.5.9"
859+
// +kubebuilder:default="flomesh/pipy-repo:1.5.10"
860860
// RepoServerImage defines the image of repo server.
861861
RepoServerImage string `json:"repoServerImage"`
862862
}

tests/e2e/e2e_fsm_ingress_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ func deployAppForTestingIngress() {
243243
Containers: []corev1.Container{
244244
{
245245
Name: "pipy",
246-
Image: "flomesh/pipy:1.5.9",
246+
Image: "flomesh/pipy:1.5.10",
247247
Ports: []corev1.ContainerPort{
248248
{
249249
Name: "pipy",

tests/e2e/e2e_gatewayapi_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ func testFSMGatewayHTTPTrafficSameNamespace() {
389389
Containers: []corev1.Container{
390390
{
391391
Name: "pipy",
392-
Image: "flomesh/pipy:1.5.9",
392+
Image: "flomesh/pipy:1.5.10",
393393
Ports: []corev1.ContainerPort{
394394
{
395395
Name: "pipy",
@@ -516,7 +516,7 @@ func testFSMGatewayHTTPTrafficCrossNamespace() {
516516
Containers: []corev1.Container{
517517
{
518518
Name: "pipy",
519-
Image: "flomesh/pipy:1.5.9",
519+
Image: "flomesh/pipy:1.5.10",
520520
Ports: []corev1.ContainerPort{
521521
{
522522
Name: "pipy",

0 commit comments

Comments
 (0)