Have you got an example <@U01SFEZET8E>?
# general
l
Have you got an example @narrow-airport-65967?
n
Copy code
rabbitmq = Chart('rabbitmq-julioleal', config=ChartOpts(
    chart='rabbitmq',
    namespace=config_k8s.get("namespace"),
    fetch_opts=FetchOpts(
        repo="<https://charts.bitnami.com/bitnami>"
    ),
    values={
        "replicaCount": data.get("replicaCount"),
        
        "auth": {
            "password": config.require_secret("rabbitmqAuthPassword"),
        },
        "auth": {
            "username": data.get("username"),
        },
        "service": {
            "type": data.get('serviceType'),
    },
))
This is an example. It doesn't matter if I pass the password in clear text or as a secret, in both cases it doesn't apply to my secret
Every time I run pulumi up, it generates a new password and ignores the parameter I pass