Hi Jose,

 

You use “helm inspect <chart>” to look at the chart’s values in the helm repo:

 

[sysadmin@controller-0 ~(keystone_admin)]$ helm inspect starlingx/nova | head

apiVersion: v1

description: OpenStack-Helm Nova

home: https://docs.openstack.org/nova/latest/

icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_vertical.png

maintainers:

- name: OpenStack-Helm Authors

name: nova

sources:

- https://git.openstack.org/cgit/openstack/nova

- https://git.openstack.org/cgit/openstack/openstack-helm

 

You use “helm get values <release>” to get current values of the released service:

 

[sysadmin@controller-0 ~(keystone_admin)]$ helm get values osh-openstack-nova | head

ceph_client:

  user_secret_name: ceph-pool-kube-rbd

conf:

  ceph:

    enabled: true

    ephemeral_storage:

      rbd_pools:

      - rbd_chunk_size: 512

        rbd_crush_rule: storage_tier_ruleset

        rbd_pool_name: ephemeral

 

 

Regards,

Bob

 

From: "Perez Carranza, Jose" <jose.perez.carranza@intel.com>
Date: Wednesday, July 31, 2019 at 3:09 PM
To: "starlingx-discuss@lists.starlingx.io" <starlingx-discuss@lists.starlingx.io>
Subject: [Starlingx-discuss] [Containers] How to retrieve data from a helm chart already applied

 

Hi

 

I’m trying to inspect a chart already applied on the StarlignX deployment, does anyone knows if I’m missing something on the steps mentioned below, because currently I’m not able to retrieve the data.

 

 

controller-0:~$ helm list |grep nova

osh-openstack-nova                      1             Thu Jul 18 19:32:41 2019               DEPLOYED           nova-0.1.0                                                    openstack

osh-openstack-nova-api-proxy                   1             Thu Jul 18 19:32:41 2019               DEPLOYED           nova-api-proxy-0.1.0                                    openstack

 

-------

 

controller-0:~$ helm repo update

Hang tight while we grab the latest from your chart repositories...

...Skip local chart repository

...Unable to get an update from the "starlingx" chart repository (http://127.0.0.1:8080/helm_charts/starlingx):

                Get http://127.0.0.1:8080/helm_charts/starlingx/index.yaml: dial tcp 127.0.0.1:8080: connect: connection refused

...Unable to get an update from the "stx-platform" chart repository (http://127.0.0.1:8080/helm_charts/stx-platform):

                Get http://127.0.0.1:8080/helm_charts/stx-platform/index.yaml: dial tcp 127.0.0.1:8080: connect: connection refused

...Unable to get an update from the "stable" chart repository (https://kubernetes-charts.storage.googleapis.com):

                Get https://kubernetes-charts.storage.googleapis.com/index.yaml: dial tcp 172.217.164.112:443: connect: connection timed out

Update Complete. Happy Helming!

controller-0:~$ helm inspect osh-openstack-nova

Error: failed to download "osh-openstack-nova" (hint: running `helm repo update` may help)

 

 

 

 

Regards

Jose

--