Skip to content

Commit

Permalink
build: bump pipy from 0.99.0-2 to 0.99.1-1 (#187)
Browse files Browse the repository at this point in the history
Signed-off-by: Lin Yang <reaver@flomesh.io>
  • Loading branch information
reaver-flomesh authored Feb 2, 2024
1 parent e2552c5 commit 6d9fd3d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions charts/fsm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -566,11 +566,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":"0.99.0-2"},"ipaddr":"127.0.0.1","port":6060,"standalone":false}` | Pipy RepoServer |
| fsm.repoServer | object | `{"codebase":"","image":{"name":"pipy-repo","registry":"flomesh","tag":"0.99.1-1"},"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 | `"0.99.0-2"` | Repo server image tag |
| fsm.repoServer.image.tag | string | `"0.99.1-1"` | 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 @@ -579,10 +579,10 @@ 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.3.5"` | service-lb image tag |
| fsm.sidecar | object | `{"image":{"name":"pipy","registry":"flomesh","tag":"0.99.0-2"},"sidecarDisabledMTLS":false,"sidecarLogLevel":"error","sidecarTimeout":60}` | Sidecar supported by fsm |
| fsm.sidecar | object | `{"image":{"name":"pipy","registry":"flomesh","tag":"0.99.1-1"},"sidecarDisabledMTLS":false,"sidecarLogLevel":"error","sidecarTimeout":60}` | Sidecar supported by fsm |
| fsm.sidecar.image.name | string | `"pipy"` | Sidecar image name |
| fsm.sidecar.image.registry | string | `"flomesh"` | Registry for sidecar image |
| fsm.sidecar.image.tag | string | `"0.99.0-2"` | Sidecar image tag |
| fsm.sidecar.image.tag | string | `"0.99.1-1"` | 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: 0.99.0-2
tag: 0.99.1-1
# -- Sidecar runs without mTLS
sidecarDisabledMTLS: false
# -- Log level for the proxy sidecar. Non developers should generally never set this value. In production environments the LogLevel should be set to `error`
Expand All @@ -92,7 +92,7 @@ fsm:
# -- Repo server image name
name: pipy-repo
# -- Repo server image tag
tag: 0.99.0-2
tag: 0.99.1-1
# -- 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 @@ -1744,7 +1744,7 @@ spec:
description: CurlImage defines the image of curl.
type: string
repoServerImage:
default: flomesh/pipy-repo:0.99.0-2
default: flomesh/pipy-repo:0.99.1-1
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:0.99.0-2-$DISTROLESS_TAG
FROM flomesh/pipy:0.99.1-1-$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:0.99.0-2-$DISTROLESS_TAG
FROM flomesh/pipy:0.99.1-1-$DISTROLESS_TAG
WORKDIR /
COPY --from=builder /fsm/bin/fsm-ingress .

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 @@ -710,7 +710,7 @@ type MiscSpec struct {
// CurlImage defines the image of curl.
CurlImage string `json:"curlImage"`

// +kubebuilder:default="flomesh/pipy-repo:0.99.0-2"
// +kubebuilder:default="flomesh/pipy-repo:0.99.1-1"
// RepoServerImage defines the image of repo server.
RepoServerImage string `json:"repoServerImage"`
}
Expand Down

0 comments on commit 6d9fd3d

Please sign in to comment.