Skip to content

Commit

Permalink
Merge pull request #39 from anynines/release-v1.3.2
Browse files Browse the repository at this point in the history
Release v1.3.2
  • Loading branch information
abdulhaseeb3 authored Jan 23, 2025
2 parents 4987fb3 + f4d306b commit 9bb1b80
Show file tree
Hide file tree
Showing 16 changed files with 21 additions and 19 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## [1.3.2] - 2025-01-23

### Added

- Added `HostURL` and `Port` fields to the `ServiceBinding` status of `provider-anynines` managed resources.
Expand Down
2 changes: 1 addition & 1 deletion crossplane-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ To install the configuration package (containing definitions and compositions),
1. Install the package via crossplane:
```bash
crossplane xpkg install configuration public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.1
crossplane xpkg install configuration public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.2
```
2. Install files directly:
Expand Down
2 changes: 1 addition & 1 deletion crossplane-api/deploy/config-pkg-anynines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kind: Configuration
metadata:
name: anynines-dataservices
spec:
package: public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.1
package: public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.2
2 changes: 1 addition & 1 deletion crossplane-api/deploy/provider-anynines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Provider
metadata:
name: provider-anynines
spec:
package: "public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.1"
package: "public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.2"
runtimeConfigRef:
name: provider-anynines
---
Expand Down
2 changes: 1 addition & 1 deletion docs/for-developers/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Checking Prerequisites...
...
The following command will be executed for you:
/opt/homebrew/bin/kubectl bind http://192.168.0.91:8080/export --konnector-image public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.1 --context kind-klutch-app
/opt/homebrew/bin/kubectl bind http://192.168.0.91:8080/export --konnector-image public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.2 --context kind-klutch-app
```
Next, a browser window will open for authentication. Use these demo credentials:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ spec:
serviceAccountName: anynines-backend
containers:
- name: anynines-backend
image: public.ecr.aws/w5n9a2g2/klutch/example-backend:v1.3.1
image: public.ecr.aws/w5n9a2g2/klutch/example-backend:v1.3.2
args:
- --namespace-prefix=cluster
- --pretty-name=anynines
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ backend. To create this binding, execute the following commands:
1. In the following line, replace `<backend-host>` with the hostname of the Klutch backend:

```bash
kubectl bind http://<backend-host>:443/export --konnector-image=public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.1
kubectl bind http://<backend-host>:443/export --konnector-image=public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.2
```

2. Authenticate using provided URL and your OIDC credentials. Grant the OIDC client access in the
Expand Down Expand Up @@ -255,7 +255,7 @@ spec:
containers:
- name: konnector
# Make sure to use the latest image version here:
image: public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.1
image: public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.2
env:
- name: POD_NAME
valueFrom:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ registry of your choice, and deploy your changes to the control plane cluster by
# Get the name of the configuration
$ kubectl get configurations.pkg.crossplane.io
NAME INSTALLED HEALTHY PACKAGE AGE
w5n9a2g2-anynines-dataservices True True public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.1 3d
w5n9a2g2-anynines-dataservices True True public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.2 3d

# edit the configuration
$ kubectl edit configurations.pkg.crossplane.io w5n9a2g2-anynines-dataservices
Expand Down
2 changes: 1 addition & 1 deletion docs/platform-operator/monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ condition of the installed crossplane providers:
$ kubectl get providers
NAME INSTALLED HEALTHY PACKAGE AGE
crossplane-contrib-provider-kubernetes True True xpkg.upbound.io/crossplane-contrib/provider-kubernetes:v0.9.0 118m
provider-anynines True True public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.1 118m
provider-anynines True True public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.2 118m
```

If one of the underlying pods encounters an error and needs to be recreated, the HEALTHY condition
Expand Down
8 changes: 4 additions & 4 deletions docs/platform-operator/update-cluster-components/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ image in our [image registry](https://gallery.ecr.aws/w5n9a2g2/klutch/provider-a

```bash
kubectl patch providers/provider-anynines \
--type merge -p '{"spec":{"package":"public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.1"}}'
--type merge -p '{"spec":{"package":"public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.2"}}'
```

2. Finally update anynines configuration package

```bash
kubectl patch configurations/anynines-dataservices \
--type merge -p '{"spec":{"package":"public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.1"}}'
--type merge -p '{"spec":{"package":"public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.2"}}'
```

### Control Plane Cluster backend
Expand Down Expand Up @@ -77,7 +77,7 @@ checking out the tab "Image tags" for this image in our
### Example using kubectl

```bash
kubectl set image --namespace kube-bind deployment/konnector konnector=public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.1
kubectl set image --namespace kube-bind deployment/konnector konnector=public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.2
```

### Example using a manifest
Expand Down Expand Up @@ -107,7 +107,7 @@ spec:
containers:
- name: konnector
# This image should point to the new version:
image: public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.1
image: public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.2
env:
- name: POD_NAME
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion docs/static/po_files/backend-anynines.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
serviceAccountName: anynines-backend
containers:
- name: anynines-backend
image: public.ecr.aws/w5n9a2g2/klutch/example-backend:v1.3.1
image: public.ecr.aws/w5n9a2g2/klutch/example-backend:v1.3.2
args:
- --namespace-prefix=cluster
- --pretty-name=anynines
Expand Down
2 changes: 1 addition & 1 deletion docs/static/po_files/konnector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
containers:
- name: konnector
# Make sure to use the latest image version here:
image: public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.1
image: public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.2
env:
- name: POD_NAME
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion docs/static/po_files/update-konnector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
containers:
- name: konnector
# This image should point to the new version:
image: public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.1
image: public.ecr.aws/w5n9a2g2/klutch/konnector:v1.3.2
env:
- name: POD_NAME
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion provider-anynines/examples/provider/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kind: Provider
metadata:
name: provider-anynines
spec:
package: "public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.1"
package: "public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.2"
2 changes: 1 addition & 1 deletion test/e2e/provider/manifests/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kind: Configuration
metadata:
name: anynines-dataservices
spec:
package: public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.1
package: public.ecr.aws/w5n9a2g2/klutch/dataservices:v1.3.2
2 changes: 1 addition & 1 deletion test/e2e/provider/manifests/install/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ kind: Provider
metadata:
name: anynines-provider
spec:
package: public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.1
package: public.ecr.aws/w5n9a2g2/klutch/provider-anynines:v1.3.2
runtimeConfigRef:
name: enable-debug-logging

0 comments on commit 9bb1b80

Please sign in to comment.