diff --git a/charts/fission-all/Chart.yaml b/charts/fission-all/Chart.yaml index 5ba9797a..145bac7a 100644 --- a/charts/fission-all/Chart.yaml +++ b/charts/fission-all/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: fission-all -version: 0.2.1 +version: 0.3.0-rc description: Fission is a fast serverless framework for Kubernetes. keywords: - fission @@ -12,4 +12,4 @@ maintainers: - name: Ta Ching Chen email: contact@tachingchen.com engine: gotpl -appVersion: 0.2.1 +appVersion: 0.3.0-rc diff --git a/charts/fission-all/templates/NOTES.txt b/charts/fission-all/templates/NOTES.txt index f28bff8a..c63f569a 100644 --- a/charts/fission-all/templates/NOTES.txt +++ b/charts/fission-all/templates/NOTES.txt @@ -1,13 +1,13 @@ 1. Install the client CLI. Mac: - $ curl -Lo fission https://github.com/fission/fission/releases/download/v0.2.1/fission-cli-osx && chmod +x fission && sudo mv fission /usr/local/bin/ + $ curl -Lo fission https://github.com/fission/fission/releases/download/0.3.0-rc/fission-cli-osx && chmod +x fission && sudo mv fission /usr/local/bin/ Linux: - $ curl -Lo fission https://github.com/fission/fission/releases/download/v0.2.1/fission-cli-linux && chmod +x fission && sudo mv fission /usr/local/bin/ + $ curl -Lo fission https://github.com/fission/fission/releases/download/0.3.0-rc/fission-cli-linux && chmod +x fission && sudo mv fission /usr/local/bin/ Windows: - For Windows, you can use the linux binary on WSL. Or you can download this windows executable: https://github.com/fission/fission/releases/download/v0.2.1/fission-cli-windows.exe + For Windows, you can use the linux binary on WSL. Or you can download this windows executable: https://github.com/fission/fission/releases/download/0.3.0-rc/fission-cli-windows.exe 2. Set the FISSION_URL and FISSION_ROUTER environment variables. diff --git a/charts/fission-all/values.yaml b/charts/fission-all/values.yaml index 5e8b23e0..18984b80 100644 --- a/charts/fission-all/values.yaml +++ b/charts/fission-all/values.yaml @@ -13,13 +13,13 @@ image: fission/fission-bundle pullPolicy: IfNotPresent ## Fission image version -imageTag: v0.2.1 +imageTag: 0.3.0-rc ## Fission fetcher repository fetcherImage: fission/fetcher ## Fission fetcher image version -fetcherImageTag: v0.2.1 +fetcherImageTag: 0.3.0-rc ## Port at which Fission controller service should be exposed controllerPort: 31313 diff --git a/charts/fission-core/Chart.yaml b/charts/fission-core/Chart.yaml index 63c7092d..a5241d6a 100644 --- a/charts/fission-core/Chart.yaml +++ b/charts/fission-core/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: fission-core -version: 0.2.1 +version: 0.3.0-rc description: Fission is a fast serverless framework for Kubernetes. keywords: - fission @@ -12,4 +12,4 @@ maintainers: - name: Ta Ching Chen email: contact@tachingchen.com engine: gotpl -appVersion: 0.2.1 +appVersion: 0.3.0-rc diff --git a/charts/fission-core/templates/NOTES.txt b/charts/fission-core/templates/NOTES.txt index f28bff8a..c63f569a 100644 --- a/charts/fission-core/templates/NOTES.txt +++ b/charts/fission-core/templates/NOTES.txt @@ -1,13 +1,13 @@ 1. Install the client CLI. Mac: - $ curl -Lo fission https://github.com/fission/fission/releases/download/v0.2.1/fission-cli-osx && chmod +x fission && sudo mv fission /usr/local/bin/ + $ curl -Lo fission https://github.com/fission/fission/releases/download/0.3.0-rc/fission-cli-osx && chmod +x fission && sudo mv fission /usr/local/bin/ Linux: - $ curl -Lo fission https://github.com/fission/fission/releases/download/v0.2.1/fission-cli-linux && chmod +x fission && sudo mv fission /usr/local/bin/ + $ curl -Lo fission https://github.com/fission/fission/releases/download/0.3.0-rc/fission-cli-linux && chmod +x fission && sudo mv fission /usr/local/bin/ Windows: - For Windows, you can use the linux binary on WSL. Or you can download this windows executable: https://github.com/fission/fission/releases/download/v0.2.1/fission-cli-windows.exe + For Windows, you can use the linux binary on WSL. Or you can download this windows executable: https://github.com/fission/fission/releases/download/0.3.0-rc/fission-cli-windows.exe 2. Set the FISSION_URL and FISSION_ROUTER environment variables. diff --git a/charts/fission-core/values.yaml b/charts/fission-core/values.yaml index 3ab7a880..b9b9880f 100644 --- a/charts/fission-core/values.yaml +++ b/charts/fission-core/values.yaml @@ -10,7 +10,7 @@ serviceType: LoadBalancer image: fission/fission-bundle ## Fission image version -imageTag: v0.2.1 +imageTag: 0.3.0-rc ## Image pull policy pullPolicy: IfNotPresent @@ -19,7 +19,7 @@ pullPolicy: IfNotPresent fetcherImage: fission/fetcher ## Fission fetcher image version -fetcherImageTag: v0.2.1 +fetcherImageTag: 0.3.0-rc ## Port at which Fission controller service should be exposed controllerPort: 31313 diff --git a/controller/api.go b/controller/api.go index 22404734..a5d52d2d 100644 --- a/controller/api.go +++ b/controller/api.go @@ -118,7 +118,7 @@ func (api *API) getLogDBConfig(dbType string) logDBConfig { func (api *API) HomeHandler(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "application/json; charset=utf-8") - fmt.Fprintf(w, "{\"message\": \"Fission API\", \"version\": \"0.2.1\"}\n") + fmt.Fprintf(w, "{\"message\": \"Fission API\", \"version\": \"0.3.0-rc\"}\n") } func (api *API) ApiVersionMismatchHandler(w http.ResponseWriter, r *http.Request) { diff --git a/fission/main.go b/fission/main.go index f64c45a6..8e4dc6f7 100644 --- a/fission/main.go +++ b/fission/main.go @@ -26,7 +26,7 @@ func main() { app := cli.NewApp() app.Name = "fission" app.Usage = "Serverless functions for Kubernetes" - app.Version = "0.2.1" + app.Version = "0.3.0-rc" app.Flags = []cli.Flag{ cli.StringFlag{Name: "server", Usage: "Fission server URL", EnvVar: "FISSION_URL"}, @@ -129,7 +129,7 @@ func main() { upgradeFileFlag := cli.StringFlag{Name: "file", Usage: "JSON file containing all fission state"} upgradeSubCommands := []cli.Command{ {Name: "dump", Usage: "Dump all state from a v0.1 fission installation", Flags: []cli.Flag{upgradeFileFlag}, Action: upgradeDumpState}, - {Name: "restore", Usage: "Restore state dumped from a v0.1 install into a v0.2 install", Flags: []cli.Flag{upgradeFileFlag}, Action: upgradeRestoreState}, + {Name: "restore", Usage: "Restore state dumped from a v0.1 install into a v0.2+ install", Flags: []cli.Flag{upgradeFileFlag}, Action: upgradeRestoreState}, } app.Commands = []cli.Command{ {Name: "function", Aliases: []string{"fn"}, Usage: "Create, update and manage functions", Subcommands: fnSubcommands},