Skip to content

Commit

Permalink
Release v0.2.0.rc
Browse files Browse the repository at this point in the history
Includes and updated Changelog, update the install.yaml
to rc version, and updates for the docs for release.
  • Loading branch information
markmandel committed May 30, 2018
1 parent 431dd34 commit 4c00b83
Show file tree
Hide file tree
Showing 8 changed files with 246 additions and 7 deletions.
235 changes: 235 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ go_version_flags = -ldflags "-X agones.dev/agones/pkg.Version=$(VERSION)"

uname := $(shell uname -s)
ifneq ($(findstring Microsoft,$(shell uname -r)),)
osinclude := windows.mk
osinclude := windows.mk
else ifeq ($(uname),Linux)
osinclude := linux.mk
else ifeq ($(uname),Darwin)
Expand Down
2 changes: 1 addition & 1 deletion docs/create_fleet.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
⚠️⚠️⚠️ **This is currently a development feature and has not been released** ⚠️⚠️⚠️
⚠️⚠️⚠️ **This is currently a release candidate feature** ⚠️⚠️⚠️

# Quickstart Create a Game Server Fleet

Expand Down
2 changes: 1 addition & 1 deletion docs/fleet_spec.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
⚠️⚠️⚠️ **This is currently a development feature and has not been released** ⚠️⚠️⚠️
⚠️⚠️⚠️ **This is currently a release candidate feature** ⚠️⚠️⚠️

# Fleet Specification

Expand Down
2 changes: 2 additions & 0 deletions install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ We can install Agones to the cluster using the
kubectl apply -f https://raw.githubusercontent.com/googlecloudplatform/agones/release-0.1/install.yaml
```
You can also find the install.yaml in the latest `agones-install` zip from the [releases](https://github.com/GoogleCloudPlatform/agones/releases) archive.
> Note: Installing Agones with the `intall.yaml` will setup the TLS certificates stored in this repository for securing
> kubernetes webhooks communication. If you want to generates new certificates or use your own,
> we recommend using the helm installation.
Expand Down
4 changes: 3 additions & 1 deletion install/helm/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
⚠️⚠️⚠️ **This is currently a development feature and has not been released** ⚠️⚠️⚠️
⚠️⚠️⚠️ **This is currently a release candidate feature** ⚠️⚠️⚠️

# Install Agones using Helm

Expand All @@ -17,6 +17,8 @@ This chart install the Agones application and defines deployment on a [Kubernete
To install the chart with the release name `my-release`:

Download the latest `agones-install` zip from the [releases](https://github.com/GoogleCloudPlatform/agones/releases) archive.

```bash
$ cd install/helm/
$ helm install --name my-release agones
Expand Down
2 changes: 1 addition & 1 deletion install/helm/agones/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ agones:
timeoutSeconds: 1
image:
registry: gcr.io/agones-images
tag: 0.2.0
tag: 0.2.0.rc
controller:
name: agones-controller
pullPolicy: IfNotPresent
Expand Down
4 changes: 2 additions & 2 deletions install/yaml/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ spec:
serviceAccountName: agones-controller
containers:
- name: agones-controller
image: "gcr.io/agones-images/agones-controller:0.2.0"
image: "gcr.io/agones-images/agones-controller:0.2.0.rc"
imagePullPolicy: IfNotPresent
env:
- name: ALWAYS_PULL_SIDECAR # set the sidecar imagePullPolicy to Always
Expand All @@ -710,7 +710,7 @@ spec:
- name: MAX_PORT
value: "8000"
- name: SIDECAR # overwrite the GameServer sidecar image that is used
value: "gcr.io/agones-images/agones-sdk:0.2.0"
value: "gcr.io/agones-images/agones-sdk:0.2.0.rc"
livenessProbe:
httpGet:
path: /live
Expand Down

0 comments on commit 4c00b83

Please sign in to comment.