Skip to content

Commit

Permalink
[backport] build(deps): bump pipy from 1.5.7 to 1.5.8 (#508)
Browse files Browse the repository at this point in the history
Signed-off-by: Lin Yang <[email protected]>
  • Loading branch information
reaver-flomesh committed Dec 8, 2024
1 parent 08fa566 commit 97fb38d
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions charts/fsm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -436,11 +436,11 @@ The following table lists the configurable parameters of the fsm chart and their
| fsm.remoteLogging.port | int | `30514` | Port of the remote logging service |
| fsm.remoteLogging.sampledFraction | string | `"1.0"` | Sampled Fraction |
| fsm.remoteLogging.secretName | string | `"fsm-remote-logging-secret"` | Secret Name |
| fsm.repoServer | object | `{"codebase":"","image":{"name":"pipy-repo","registry":"flomesh","tag":"1.5.7"},"ipaddr":"127.0.0.1","port":6060,"standalone":false}` | Pipy RepoServer |
| fsm.repoServer | object | `{"codebase":"","image":{"name":"pipy-repo","registry":"flomesh","tag":"1.5.8"},"ipaddr":"127.0.0.1","port":6060,"standalone":false}` | Pipy RepoServer |
| fsm.repoServer.codebase | string | `""` | codebase is the folder used by fsmController. |
| fsm.repoServer.image.name | string | `"pipy-repo"` | Repo server image name |
| fsm.repoServer.image.registry | string | `"flomesh"` | Registry for repo server image |
| fsm.repoServer.image.tag | string | `"1.5.7"` | Repo server image tag |
| fsm.repoServer.image.tag | string | `"1.5.8"` | Repo server image tag |
| fsm.repoServer.ipaddr | string | `"127.0.0.1"` | ipaddr of host/service where Pipy RepoServer is installed |
| fsm.repoServer.port | int | `6060` | port of pipy RepoServer |
| fsm.repoServer.standalone | bool | `false` | if false , Pipy RepoServer is installed within fsmController pod. |
Expand All @@ -449,11 +449,11 @@ The following table lists the configurable parameters of the fsm chart and their
| fsm.serviceLB.image.name | string | `"mirrored-klipper-lb"` | service-lb image name |
| fsm.serviceLB.image.registry | string | `"flomesh"` | Registry for service-lb image |
| fsm.serviceLB.image.tag | string | `"v0.4.7"` | service-lb image tag |
| fsm.sidecar | object | `{"compressConfig":true,"image":{"name":"pipy","registry":"flomesh","tag":"1.5.7"},"sidecarDisabledMTLS":false,"sidecarLogLevel":"error","sidecarTimeout":60}` | Sidecar supported by fsm |
| fsm.sidecar | object | `{"compressConfig":true,"image":{"name":"pipy","registry":"flomesh","tag":"1.5.8"},"sidecarDisabledMTLS":false,"sidecarLogLevel":"error","sidecarTimeout":60}` | Sidecar supported by fsm |
| fsm.sidecar.compressConfig | bool | `true` | Sidecar compresses config.json |
| fsm.sidecar.image.name | string | `"pipy"` | Sidecar image name |
| fsm.sidecar.image.registry | string | `"flomesh"` | Registry for sidecar image |
| fsm.sidecar.image.tag | string | `"1.5.7"` | Sidecar image tag |
| fsm.sidecar.image.tag | string | `"1.5.8"` | Sidecar image tag |
| fsm.sidecar.sidecarDisabledMTLS | bool | `false` | Sidecar runs without mTLS |
| 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` |
| fsm.sidecar.sidecarTimeout | int | `60` | Sets connect/idle/read/write timeout |
Expand Down
4 changes: 2 additions & 2 deletions charts/fsm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fsm:
# -- Sidecar image name
name: pipy
# -- Sidecar image tag
tag: 1.5.7
tag: 1.5.8
# -- Sidecar runs without mTLS
sidecarDisabledMTLS: false
# -- Sidecar compresses config.json
Expand All @@ -94,7 +94,7 @@ fsm:
# -- Repo server image name
name: pipy-repo
# -- Repo server image tag
tag: 1.5.7
tag: 1.5.8
# -- if false , Pipy RepoServer is installed within fsmController pod.
standalone: false
# -- ipaddr of host/service where Pipy RepoServer is installed
Expand Down
2 changes: 1 addition & 1 deletion cmd/fsm-bootstrap/crds/config.flomesh.io_meshconfigs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1736,7 +1736,7 @@ spec:
description: Misc defines the configurations of misc info
properties:
repoServerImage:
default: flomesh/pipy-repo:1.5.7
default: flomesh/pipy-repo:1.5.8
description: RepoServerImage defines the image of repo server.
type: string
required:
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.fsm-gateway
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -v -o bin/fsm-gateway -ldflags "$LDFLAGS" ./cmd/fsm-gateway

# Build the final image
FROM flomesh/pipy:1.5.7-$DISTROLESS_TAG
FROM flomesh/pipy:1.5.8-$DISTROLESS_TAG
WORKDIR /
COPY --from=builder /fsm/bin/fsm-gateway .

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.fsm-ingress
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -v -o bin/fsm-ingress -ldflags "$LDFLAGS" ./cmd/fsm-ingress

# Build the final image
FROM flomesh/pipy:1.5.7-$DISTROLESS_TAG
FROM flomesh/pipy:1.5.8-$DISTROLESS_TAG
WORKDIR /
COPY --from=builder /fsm/bin/fsm-ingress .

Expand Down
4 changes: 2 additions & 2 deletions docs/tests/gateway-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ spec:
spec:
containers:
- name: pipy
image: flomesh/pipy:1.5.7
image: flomesh/pipy:1.5.8
ports:
- name: pipy
containerPort: 8080
Expand Down Expand Up @@ -396,7 +396,7 @@ spec:
spec:
containers:
- name: pipy
image: flomesh/pipy:1.5.7
image: flomesh/pipy:1.5.8
ports:
- name: pipy
containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/config/v1alpha3/mesh_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ type ImageSpec struct {

// MiscSpec is the type to represent misc configs.
type MiscSpec struct {
// +kubebuilder:default="flomesh/pipy-repo:1.5.7"
// +kubebuilder:default="flomesh/pipy-repo:1.5.8"
// RepoServerImage defines the image of repo server.
RepoServerImage string `json:"repoServerImage"`
}
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/e2e_fsm_ingress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func deployAppForTestingIngress() {
Containers: []corev1.Container{
{
Name: "pipy",
Image: "flomesh/pipy:1.5.7",
Image: "flomesh/pipy:1.5.8",
Ports: []corev1.ContainerPort{
{
Name: "pipy",
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/e2e_gatewayapi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ func testFSMGatewayHTTPTrafficSameNamespace() {
Containers: []corev1.Container{
{
Name: "pipy",
Image: "flomesh/pipy:1.5.7",
Image: "flomesh/pipy:1.5.8",
Ports: []corev1.ContainerPort{
{
Name: "pipy",
Expand Down Expand Up @@ -478,7 +478,7 @@ func testFSMGatewayHTTPTrafficCrossNamespace() {
Containers: []corev1.Container{
{
Name: "pipy",
Image: "flomesh/pipy:1.5.7",
Image: "flomesh/pipy:1.5.8",
Ports: []corev1.ContainerPort{
{
Name: "pipy",
Expand Down

0 comments on commit 97fb38d

Please sign in to comment.