here is my simple abctl deployment
I’m trying to install Airbyte 1.2.0 on a Linux VM using abctl
.
The installation appears successful, and Airbyte is running without any error logs from the pods. The PostgreSQL database seems properly set up, with all the expected schemas and tables created. The only record I’ve seen added so far is the one for the workspace.
global:
env_vars:
HTTP_PROXY: "<http://10.0.0.0:10>"
HTTPS_PROXY: "<http://10.0.0.0:10>"
NO_PROXY: "10.0.0.0/8,localhost,127.0.0.1,.<http://domain.fr|domain.fr>,.cluster.local,.local,.svc,airbyte-*,airbyte-db-0,airbyte-minio-0,airbyte-abctl-airbyte-connector-builder-server-svc,airbyte-abctl-airbyte-server-svc,airbyte-abctl-airbyte-webapp-svc,airbyte-abctl-temporal,airbyte-abctl-workload-api-server-svc,airbyte-db-svc,airbyte-minio-svc,airbyte-abctl-worker-svc,airbyte-temporal,airbyte-workload-api-server-svc"
http_proxy: "<http://10.0.0.0:10>"
https_proxy: "<http://10.0.0.0:10>"
no_proxy: "10.0.0.0/8,localhost,127.0.0.1,.<http://domain.fr|domain.fr>,.cluster.local,.local,.svc,airbyte-*,airbyte-db-0,airbyte-minio-0,airbyte-abctl-airbyte-connector-builder-server-svc,airbyte-abctl-airbyte-server-svc,airbyte-abctl-airbyte-webapp-svc,airbyte-abctl-temporal,airbyte-abctl-workload-api-server-svc,airbyte-db-svc,airbyte-minio-svc,airbyte-abctl-worker-svc,airbyte-temporal,airbyte-workload-api-server-svc"
JAVA_TOOL_OPTIONS: "-Dhttp.proxyHost=10.0.0.0 -Dhttp.proxyPort=10 -Dhttps.proxyHost=10.0.0.0 -Dhttps.proxyPort=10 -Dhttp.nonProxyHosts=10.*|localhost|127.0.0.1|*.internal|*.cluster.local|*.local|*.svc|airbyte-*|airbyte-db-0|airbyte-minio-0|airbyte-abctl-airbyte-connector-builder-server-svc|airbyte-abctl-airbyte-server-svc|airbyte-abctl-airbyte-webapp-svc|airbyte-abctl-temporal|airbyte-abctl-workload-api-server-svc|airbyte-db-svc|airbyte-minio-svc|airbyte-worker-svc|airbyte-temporal|airbyte-workload-api-server-svc""
webapp:
image:
repository: registry/airbyte-webapp-no-ipv6
tag: 1.2.0```
```abctl local install -v --values=./values.yaml --host=<http://domain.fr|domain.fr> --port=8080 --no-browser```
```FROM airbyte/webapp:1.2.0
USER root
# Ensure the airbyte user exists
RUN adduser -D -s /bin/bash airbyte
# Add the script to remove IPv6
COPY remove_ipv6.sh /tmp/remove_ipv6.sh
RUN chmod +x /tmp/remove_ipv6.sh && \
/tmp/remove_ipv6.sh && \
echo "Nginx configuration after IPv6 removal:" && \
cat /etc/nginx/templates/default.conf.template && \
rm /tmp/remove_ipv6.sh
USER airbyte```