Skip to content

Commit

Permalink
test: try CI without fluentbit
Browse files Browse the repository at this point in the history
  • Loading branch information
perangel committed Jan 10, 2023
1 parent c73c59a commit 8fa0f74
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/bin/acceptance_test_kube_helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ kubectl patch configmap/coredns \
--type merge \
-p '{"data":{"NodeHosts": "${DOCKER_HOST_IP} host.docker.internal" }}'

if [ -n "$CI" ]; then
# TODO (revert me): This is for a test
if [ -n "$CICI" ]; then
echo "Deploying fluentbit"
helm repo add fluent https://fluent.github.io/helm-charts
helm repo update fluent
Expand Down Expand Up @@ -56,7 +57,7 @@ kubectl describe pods | grep "Name\|Node"
# allocates a lot of time to start kube. takes a while for postgres+temporal to work things out
sleep 120

if [ -n "$CI" ]; then
if [ -n "$CICI" ]; then
server_logs () { kubectl logs deployment.apps/airbyte-server > /tmp/kubernetes_logs/server.txt; }
pod_sweeper_logs () { kubectl logs deployment.apps/airbyte-pod-sweeper > /tmp/kubernetes_logs/pod_sweeper.txt; }
worker_logs () { kubectl logs deployment.apps/airbyte-worker > /tmp/kubernetes_logs/worker.txt; }
Expand Down

0 comments on commit 8fa0f74

Please sign in to comment.