McGoffmann
McGoffmann
Test fails for: it('with id ' + id, function() { expect(dataservice.getCustomer).to.have.been.calledWith(id); }); getCustomer() doesn't appear to get the .withArgs(id) should have called dataservice.getCustomer 1 time ‣ with id 1017109 ‣...
Needed to join raft before this would work `vault operator raft join $VAULT_ADDR` https://github.com/ned1313/Hashicorp-Certified-Vault-Associate-Vault-Management/blob/0092c4bbe555461bea960f80a2943d213a7c3984/m7/1-start-vault-agent.sh#L27 ``` $vault agent -config=vault-agent.hcl ==> Note: Vault Agent version does not match Vault server version. Vault...
Needed to add `-extfile $certPath/server1.conf -extensions v3_req` to https://github.com/ned1313/Hashicorp-Certified-Vault-Associate-Vault-Management/blob/0092c4bbe555461bea960f80a2943d213a7c3984/m3/1-run-vault.sh#L45 https://stackoverflow.com/questions/30977264/subject-alternative-name-not-present-in-certificate
Instead of https://github.com/ned1313/Hashicorp-Certified-Vault-Associate-Vault-Management/blob/0092c4bbe555461bea960f80a2943d213a7c3984/m3/1-run-vault.sh#L54 the following works when prefixing with a `/`: `-v /${parentPath}/server1:/vault`. May be a separate issue, but adding `--cap-add=IPC_LOCK` was also needed to start the container. As noted...
For https://github.com/ned1313/Hashicorp-Certified-Vault-Associate-Vault-Management/blob/0092c4bbe555461bea960f80a2943d213a7c3984/m3/1-run-vault.sh#L16, the following will work instead: `SUBJECT="//C=US\ST=Pennsylvania\L=Springfield\O=Globomantics\OU=IT\CN=Contoso"` https://github.com/ned1313/Hashicorp-Certified-Vault-Associate-Vault-Management/blob/0092c4bbe555461bea960f80a2943d213a7c3984/m3/1-run-vault.sh#L43 `openssl req -new -key $certPath/server1.key -out $certPath/server1.csr -subj "//CN=server1\O=server1" -config "$certPath/server1.conf"` Otherwise, bash tries to convert it to a path: https://stackoverflow.com/questions/54258996/git-bash-string-parameter-with-at-start-is-being-expanded-to-a-file-path...