sassoftware / viya4-deployment

This project contains Ansible code that creates a baseline in an existing Kubernetes environment for use with the SAS Viya Platform, generates the manifest for an order, and then can also deploy that order into the Kubernetes environment specified.
Apache License 2.0
71 stars 64 forks source link

fix default admin user in sitedefault #122

Closed asbisen closed 3 years ago

asbisen commented 3 years ago

sitedefaults.yaml was incorrectly formatted for default admin user.

Ref SR: [SAS 7613388319]

(was)

application:
    identities:
        sas.identities:
            administrator: viya_admin

(corrected)

application:
    sas.identities:
        administrator: viya_admin
NormJohnIV commented 3 years ago

@asbisen while you changed the example file, you did not change the file that is actually deployed. They are separate. Please make the same change to /roles/vdm/files/sitedefault.yaml and then this can be merged.

asbisen commented 3 years ago

@NormJohnIV thanks for catching that. The change was in place on my deployment dir but forgot to make the change on git repo. Added the change to /roles/vdm/.. as well.