Skip to content

Commit d8bc8c1

Browse files
jrhizorPhlair
andauthored
Bump Airbyte version from 0.33.3-alpha to 0.33.4-alpha (#8551)
Co-authored-by: Phlair <Phlair@users.noreply.github.com>
1 parent bae5b02 commit d8bc8c1

File tree

15 files changed

+33
-33
lines changed

15 files changed

+33
-33
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.33.3-alpha
2+
current_version = 0.33.4-alpha
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-[a-z]+)?

.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=0.33.3-alpha
1+
VERSION=0.33.4-alpha
22

33
# Airbyte Internal Job Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
44
DATABASE_USER=docker

airbyte-scheduler/app/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV APPLICATION airbyte-scheduler
55

66
WORKDIR /app
77

8-
ADD bin/${APPLICATION}-0.33.3-alpha.tar /app
8+
ADD bin/${APPLICATION}-0.33.4-alpha.tar /app
99

1010
# wait for upstream dependencies to become available before starting server
11-
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.33.3-alpha/bin/${APPLICATION}"]
11+
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.33.4-alpha/bin/${APPLICATION}"]

airbyte-server/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV APPLICATION airbyte-server
77

88
WORKDIR /app
99

10-
ADD bin/${APPLICATION}-0.33.3-alpha.tar /app
10+
ADD bin/${APPLICATION}-0.33.4-alpha.tar /app
1111

1212
# wait for upstream dependencies to become available before starting server
13-
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.33.3-alpha/bin/${APPLICATION}"]
13+
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.33.4-alpha/bin/${APPLICATION}"]

airbyte-webapp/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

airbyte-webapp/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "airbyte-webapp",
3-
"version": "0.33.3-alpha",
3+
"version": "0.33.4-alpha",
44
"private": true,
55
"scripts": {
66
"start": "react-scripts start",

airbyte-workers/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ENV APPLICATION airbyte-workers
2323
WORKDIR /app
2424

2525
# Move worker app
26-
ADD bin/${APPLICATION}-0.33.3-alpha.tar /app
26+
ADD bin/${APPLICATION}-0.33.4-alpha.tar /app
2727

2828
# wait for upstream dependencies to become available before starting server
29-
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.33.3-alpha/bin/${APPLICATION}"]
29+
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-0.33.4-alpha/bin/${APPLICATION}"]

charts/airbyte/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ version: 0.3.0
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.33.3-alpha"
24+
appVersion: "0.33.4-alpha"
2525

2626
dependencies:
2727
- name: common

charts/airbyte/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
| `webapp.replicaCount` | Number of webapp replicas | `1` |
3030
| `webapp.image.repository` | The repository to use for the airbyte webapp image. | `airbyte/webapp` |
3131
| `webapp.image.pullPolicy` | the pull policy to use for the airbyte webapp image | `IfNotPresent` |
32-
| `webapp.image.tag` | The airbyte webapp image tag. Defaults to the chart's AppVersion | `0.33.3-alpha` |
32+
| `webapp.image.tag` | The airbyte webapp image tag. Defaults to the chart's AppVersion | `0.33.4-alpha` |
3333
| `webapp.podAnnotations` | Add extra annotations to the webapp pod(s) | `{}` |
3434
| `webapp.service.type` | The service type to use for the webapp service | `ClusterIP` |
3535
| `webapp.service.port` | The service port to expose the webapp on | `80` |
@@ -56,7 +56,7 @@
5656
| `scheduler.replicaCount` | Number of scheduler replicas | `1` |
5757
| `scheduler.image.repository` | The repository to use for the airbyte scheduler image. | `airbyte/scheduler` |
5858
| `scheduler.image.pullPolicy` | the pull policy to use for the airbyte scheduler image | `IfNotPresent` |
59-
| `scheduler.image.tag` | The airbyte scheduler image tag. Defaults to the chart's AppVersion | `0.33.3-alpha` |
59+
| `scheduler.image.tag` | The airbyte scheduler image tag. Defaults to the chart's AppVersion | `0.33.4-alpha` |
6060
| `scheduler.podAnnotations` | Add extra annotations to the scheduler pod | `{}` |
6161
| `scheduler.resources.limits` | The resources limits for the scheduler container | `{}` |
6262
| `scheduler.resources.requests` | The requested resources for the scheduler container | `{}` |
@@ -87,7 +87,7 @@
8787
| `server.replicaCount` | Number of server replicas | `1` |
8888
| `server.image.repository` | The repository to use for the airbyte server image. | `airbyte/server` |
8989
| `server.image.pullPolicy` | the pull policy to use for the airbyte server image | `IfNotPresent` |
90-
| `server.image.tag` | The airbyte server image tag. Defaults to the chart's AppVersion | `0.33.3-alpha` |
90+
| `server.image.tag` | The airbyte server image tag. Defaults to the chart's AppVersion | `0.33.4-alpha` |
9191
| `server.podAnnotations` | Add extra annotations to the server pod | `{}` |
9292
| `server.livenessProbe.enabled` | Enable livenessProbe on the server | `true` |
9393
| `server.livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `30` |
@@ -121,7 +121,7 @@
121121
| `worker.replicaCount` | Number of worker replicas | `1` |
122122
| `worker.image.repository` | The repository to use for the airbyte worker image. | `airbyte/worker` |
123123
| `worker.image.pullPolicy` | the pull policy to use for the airbyte worker image | `IfNotPresent` |
124-
| `worker.image.tag` | The airbyte worker image tag. Defaults to the chart's AppVersion | `0.33.3-alpha` |
124+
| `worker.image.tag` | The airbyte worker image tag. Defaults to the chart's AppVersion | `0.33.4-alpha` |
125125
| `worker.podAnnotations` | Add extra annotations to the worker pod(s) | `{}` |
126126
| `worker.livenessProbe.enabled` | Enable livenessProbe on the worker | `true` |
127127
| `worker.livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `30` |

charts/airbyte/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ webapp:
4444
image:
4545
repository: airbyte/webapp
4646
pullPolicy: IfNotPresent
47-
tag: 0.33.3-alpha
47+
tag: 0.33.4-alpha
4848

4949
## @param webapp.podAnnotations [object] Add extra annotations to the webapp pod(s)
5050
##
@@ -141,7 +141,7 @@ scheduler:
141141
image:
142142
repository: airbyte/scheduler
143143
pullPolicy: IfNotPresent
144-
tag: 0.33.3-alpha
144+
tag: 0.33.4-alpha
145145

146146
## @param scheduler.podAnnotations [object] Add extra annotations to the scheduler pod
147147
##
@@ -248,7 +248,7 @@ server:
248248
image:
249249
repository: airbyte/server
250250
pullPolicy: IfNotPresent
251-
tag: 0.33.3-alpha
251+
tag: 0.33.4-alpha
252252

253253
## @param server.podAnnotations [object] Add extra annotations to the server pod
254254
##
@@ -360,7 +360,7 @@ worker:
360360
image:
361361
repository: airbyte/worker
362362
pullPolicy: IfNotPresent
363-
tag: 0.33.3-alpha
363+
tag: 0.33.4-alpha
364364

365365
## @param worker.podAnnotations [object] Add extra annotations to the worker pod(s)
366366
##

docs/operator-guides/upgrading-airbyte.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ If you are upgrading from \(i.e. your current version of Airbyte is\) Airbyte ve
9999
Here's an example of what it might look like with the values filled in. It assumes that the downloaded `airbyte_archive.tar.gz` is in `/tmp`.
100100

101101
```bash
102-
docker run --rm -v /tmp:/config airbyte/migration:0.33.3-alpha --\
102+
docker run --rm -v /tmp:/config airbyte/migration:0.33.4-alpha --\
103103
--input /config/airbyte_archive.tar.gz\
104104
--output /config/airbyte_archive_migrated.tar.gz
105105
```

kube/overlays/stable-with-resource-limits/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AIRBYTE_VERSION=0.33.3-alpha
1+
AIRBYTE_VERSION=0.33.4-alpha
22

33
# Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
44
DATABASE_HOST=airbyte-db-svc

kube/overlays/stable-with-resource-limits/kustomization.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ bases:
88

99
images:
1010
- name: airbyte/db
11-
newTag: 0.33.3-alpha
11+
newTag: 0.33.4-alpha
1212
- name: airbyte/scheduler
13-
newTag: 0.33.3-alpha
13+
newTag: 0.33.4-alpha
1414
- name: airbyte/server
15-
newTag: 0.33.3-alpha
15+
newTag: 0.33.4-alpha
1616
- name: airbyte/webapp
17-
newTag: 0.33.3-alpha
17+
newTag: 0.33.4-alpha
1818
- name: airbyte/worker
19-
newTag: 0.33.3-alpha
19+
newTag: 0.33.4-alpha
2020
- name: temporalio/auto-setup
2121
newTag: 1.7.0
2222

kube/overlays/stable/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AIRBYTE_VERSION=0.33.3-alpha
1+
AIRBYTE_VERSION=0.33.4-alpha
22

33
# Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
44
DATABASE_HOST=airbyte-db-svc

kube/overlays/stable/kustomization.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ bases:
88

99
images:
1010
- name: airbyte/db
11-
newTag: 0.33.3-alpha
11+
newTag: 0.33.4-alpha
1212
- name: airbyte/scheduler
13-
newTag: 0.33.3-alpha
13+
newTag: 0.33.4-alpha
1414
- name: airbyte/server
15-
newTag: 0.33.3-alpha
15+
newTag: 0.33.4-alpha
1616
- name: airbyte/webapp
17-
newTag: 0.33.3-alpha
17+
newTag: 0.33.4-alpha
1818
- name: airbyte/worker
19-
newTag: 0.33.3-alpha
19+
newTag: 0.33.4-alpha
2020
- name: temporalio/auto-setup
2121
newTag: 1.7.0
2222

0 commit comments

Comments
 (0)