TAG
作者主题
- 使用 Openpyxl 合并数据时出现 Excel 错误
- 如何根据 ansible 中的条件仅使用 3 个变量中的一个?
- 通过 Helm 使用自定义 Dockerfile 在本地部署 Airflow
- 如何构建 html
使用[仅] angular.js 模板来获得不连贯的 json?
作者最近主题:
我在尝试使用带有自定义 Dockerfile 的 Helm 图表在本地部署 Apache Airflow 时遇到了困难。以下是我的问题的详细描述:上下文环境:本地 Kubernetes 集群...
我在尝试使用带有自定义 Dockerfile 的 Helm 图表在本地部署 Apache Airflow 时遇到困难。以下是我的问题的详细描述:
上下文环境:本地 Kubernetes 集群(Kind Cluster)编排工具:Helm chartsAirflow 执行器:KubernetesExecutor自定义:使用自定义 Dockerfile 进行 Airflow
1)我创建了一个dockerfile:
FROM apache/airflow:2.8.0
USER root
USER airflow
RUN pip install apache-airflow-providers-apache-spark
2)之后,进行构建:
sudo docker build -t my-custom/airflow:latest .
3)加载到类型:
sudo kind load docker-image my-custom/airflow:latest
4)应用values.yaml:
helm install airflow apache-airflow/airflow -f values.yaml
我的values.yaml:
executor: KubernetesExecutor
airflow:
image:
repository: my-custom/airflow
tag: latest
pullPolicy: IfNotPresent
pullSecret: ""
uid: 50000
gid: 0
config:
core:
load_examples: 'False'
load_default_connections: 'False'
webserver:
expose_config: 'False'
logging:
remote_logging: 'True'
remote_log_conn_id: "google_cloud_default"
remote_base_log_folder: "gs://my-gcs-bucket"
dags:
gitSync:
enabled: true
repo: #my external repo
branch: main
rev: HEAD
subPath: dags
depth: 1
wait: 60
scheduler:
replicas: 1
web:
replicas: 1
service:
type: LoadBalancer
resources:
requests:
cpu: 500m
memory: 7Gi
limits:
cpu: 500m
memory: 16Gi
initContainers:
- name: wait-for-scheduler
image: busybox
command: ['sh', '-c', 'until nslookup airflow-scheduler; do echo waiting for scheduler; sleep 2; done;']
livenessProbe:
initialDelaySeconds: 1800
periodSeconds: 20
timeoutSeconds: 5
failureThreshold: 5
readinessProbe:
initialDelaySeconds: 1800
periodSeconds: 20
timeoutSeconds: 5
failureThreshold: 5
startupProbe:
initialDelaySeconds: 300
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 10
postgresql:
enabled: false
data:
metadataConnection:
protocol: postgres
host: 192.168.15.8
port: 5432
db: airflow
user: postgres
pass: airflow
flower:
enabled: false
redis:
enabled: false
triggerer:
enabled: true
ingress:
enabled: false
它安装成功,但是日志显示 docker 镜像中指定的 airflow 版本不同,并且访问 airflow UI 时未安装 spark 模块。
NAME: airflow
LAST DEPLOYED: Thu Aug 1 17:33:21 2024
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
**Thank you for installing Apache Airflow 2.9.3!**
Your release is named airflow.
You can now access your dashboard(s) by executing the following command(s) and visiting the corresponding port at localhost in your browser:
有没有人遇到过类似的问题,或者知道是什么原因导致了这种行为?任何关于如何调试和解决此问题的提示都将不胜感激。
预先感谢您的帮助!