Mandi Alexander
01/05/2023, 9:13 PM% helm install dagster dagster/dagster
Error: INSTALLATION FAILED: values don't meet the specifications of the schema(s) in the following chart(s):
dagster:
invalid character '<' looking for beginning of valuedagster-user-deployments:
invalid character '<' looking for beginning of value
I've tried using a local copy of values.yaml
. I've also tried different versions of the helm chart, but I get the same error. My best guess is that it's reaching out and getting a bad http response. Does anybody know what's causing this?helm install
, but please let me know if I'm wrong.daniel
01/06/2023, 4:59 AMvalues.yaml
file that reproduces the error that you're seeing?helm upgrade --install dagster dagster/dagster -f values.yaml
(in the folder where the valyues.yaml is)Mandi Alexander
01/06/2023, 4:29 PMdaniel
01/06/2023, 4:30 PMhelm repo add dagster <https://dagster-io.github.io/helm>
Mandi Alexander
01/06/2023, 4:31 PMdaniel
01/06/2023, 4:34 PMMandi Alexander
01/06/2023, 4:35 PMdaniel
01/06/2023, 4:37 PMMandi Alexander
01/06/2023, 4:42 PM(dagster_venv) mandi.alexander@VU-C02FT2ELML85 helm_test % helm install myspark bitnami/spark
NAME: myspark
LAST DEPLOYED: Fri Jan 6 10:45:14 2023
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
CHART NAME: spark
CHART VERSION: 6.3.13
APP VERSION: 3.3.1
daniel
01/06/2023, 4:46 PMMandi Alexander
01/06/2023, 4:46 PM(dagster_venv) helm_test % helm install myspark bitnami/spark
NAME: myspark
LAST DEPLOYED: Fri Jan 6 10:45:14 2023
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
CHART NAME: spark
CHART VERSION: 6.3.13
APP VERSION: 3.3.1
daniel
01/06/2023, 4:47 PMMandi Alexander
01/06/2023, 4:51 PMkubectl version
gives me this:
Client Version: v1.25.2
Kustomize Version: v4.5.7
Server Version: v1.25.2
daniel
01/06/2023, 4:51 PMMandi Alexander
01/06/2023, 4:51 PMdocker version
gives me this:
Client:
Cloud integration: v1.0.29
Version: 20.10.21
API version: 1.41
Go version: go1.18.7
Git commit: baeda1f
Built: Tue Oct 25 18:01:18 2022
OS/Arch: darwin/amd64
Context: default
Experimental: true
Server: Docker Desktop 4.15.0 (93002)
Engine:
Version: 20.10.21
API version: 1.41 (minimum version 1.12)
Go version: go1.18.7
Git commit: 3056208
Built: Tue Oct 25 18:00:19 2022
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.6.10
GitCommit: 770bd0108c32f3fb5c73ae1264f7e503fe7b2661
runc:
Version: 1.1.4
GitCommit: v1.1.4-0-g5fd4c4d
docker-init:
Version: 0.19.0
GitCommit: de40ad0
daniel
01/06/2023, 5:01 PMhelm template
doesn't even need a cluster to be running, so I don't think its related to your kubernetes clusterMandi Alexander
01/06/2023, 5:03 PMdaniel
01/06/2023, 5:08 PMMandi Alexander
01/06/2023, 6:41 PM% helm install myrabbit bitnami/rabbitmq
NAME: myrabbit
LAST DEPLOYED: Fri Jan 6 12:40:13 2023
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
CHART NAME: rabbitmq
CHART VERSION: 11.3.1
APP VERSION: 3.11.6** Please be patient while the chart is being deployed **
Credentials:
echo "Username : user"
echo "Password : $(kubectl get secret --namespace default myrabbit-rabbitmq -o jsonpath="{.data.rabbitmq-password}" | base64 -d)"
echo "ErLang Cookie : $(kubectl get secret --namespace default myrabbit-rabbitmq -o jsonpath="{.data.rabbitmq-erlang-cookie}" | base64 -d)"
Note that the credentials are saved in persistent volume claims and will not be changed upon upgrade or reinstallation unless the persistent volume claim has been deleted. If this is not the first installation of this chart, the credentials may not be valid.
This is applicable when no passwords are set and therefore the random password is autogenerated. In case of using a fixed password, you should specify it when upgrading.
More information about the credentials may be found at <https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases>.
RabbitMQ can be accessed within the cluster on port 5672 at myrabbit-rabbitmq.default.svc.cluster.local
To access for outside the cluster, perform the following steps:
To Access the RabbitMQ AMQP port:
echo "URL : <amqp://127.0.0.1:5672/>"
kubectl port-forward --namespace default svc/myrabbit-rabbitmq 5672:5672
To Access the RabbitMQ Management interface:
echo "URL : <http://127.0.0.1:15672/>"
kubectl port-forward --namespace default svc/myrabbit-rabbitmq 15672:15672
daniel
01/09/2023, 9:16 PMMandi Alexander
01/09/2023, 9:19 PMdaniel
01/09/2023, 9:27 PM