Skip to content

1.0-beta.4 #462

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ make clean; make
```
$ docker images | grep -i alb-ingress-controller

quay.io/coreos/alb-ingress-controller 1.0-beta.3 78f356144e33 20 minutes ago 47.4MB
quay.io/coreos/alb-ingress-controller 1.0-beta.4 78f356144e33 20 minutes ago 47.4MB
```

> Version can vary based on what's in the Makefile. If you wish to push to your own repo for testing, you can change the version and repo details in the Makefile then do a `docker push`.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

all: container

TAG?=1.0-beta.3
TAG?=1.0-beta.4
BUILD=$(shell git log --pretty=format:'%h' -n 1)
PREFIX?=quay.io/coreos/alb-ingress-controller
ARCH?=amd64
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# AWS ALB Ingress Controller

**NOTE:** This controller is in beta state as we attempt to move to our first 1.0 release. The current image version is `1.0-beta.3`. Please file any issues you find and note the version used.
**NOTE:** This controller is in beta state as we attempt to move to our first 1.0 release. The current image version is `1.0-beta.4`. Please file any issues you find and note the version used.

The AWS ALB Ingress Controller satisfies Kubernetes [ingress resources](https://kubernetes.io/docs/user-guide/ingress) by provisioning [Application Load Balancers](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/introduction.html).

Expand Down
2 changes: 1 addition & 1 deletion alb-ingress-controller-helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 1.0-beta.3
appVersion: 1.0-beta.4
description: The ALB Ingress Controller satisfies Kubernetes ingress resources by provisioning Application Load Balancers.
engine: gotpl
home: https://github.com/kubernetes-sigs/aws-alb-ingress-controller
Expand Down
2 changes: 1 addition & 1 deletion alb-ingress-controller-helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The following tables lists the configurable parameters of the alb-ingress-contro
| `awsRegion` | (REQUIRED) AWS region in which this ingress controller will operate | `us-west-1` |
| `clusterName` | (REQUIRED) Resources created by the ALB Ingress controller will be prefixed with this string | `k8s` |
| `controller.image.repository` | controller container image repository | `quay.io/coreos/alb-ingress-controller` |
| `controller.image.tag` | controller container image tag | `1.0-beta.3` |
| `controller.image.tag` | controller container image tag | `1.0-beta.4` |
| `controller.image.pullPolicy` | controller container image pull policy | `IfNotPresent` |
| `controller.extraEnv` | map of environment variables to be injected into the controller pod | `{}` |
| `controller.nodeSelector` | node labels for controller pod assignment | `{}` |
Expand Down
2 changes: 1 addition & 1 deletion alb-ingress-controller-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ clusterName: k8s
controller:
image:
repository: quay.io/coreos/alb-ingress-controller
tag: "1.0-beta.3"
tag: "1.0-beta.4"
pullPolicy: IfNotPresent

extraEnv: {}
Expand Down
2 changes: 1 addition & 1 deletion examples/alb-ingress-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ spec:
apiVersion: v1
fieldPath: metadata.namespace
# Repository location of the ALB Ingress Controller.
image: quay.io/coreos/alb-ingress-controller:1.0-beta.3
image: quay.io/coreos/alb-ingress-controller:1.0-beta.4
imagePullPolicy: Always
name: server
resources: {}
Expand Down