Merge pull request #3283 from hashicorp/f-acl-job-latest-deployment
Add ACL to latest job api
This commit is contained in:
commit
8f1c89c721
|
@ -909,6 +909,13 @@ func (j *Job) LatestDeployment(args *structs.JobSpecificRequest,
|
||||||
}
|
}
|
||||||
defer metrics.MeasureSince([]string{"nomad", "job", "latest_deployment"}, time.Now())
|
defer metrics.MeasureSince([]string{"nomad", "job", "latest_deployment"}, time.Now())
|
||||||
|
|
||||||
|
// Check for read-job permissions
|
||||||
|
if aclObj, err := j.srv.resolveToken(args.SecretID); err != nil {
|
||||||
|
return err
|
||||||
|
} else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilityReadJob) {
|
||||||
|
return structs.ErrPermissionDenied
|
||||||
|
}
|
||||||
|
|
||||||
// Setup the blocking query
|
// Setup the blocking query
|
||||||
opts := blockingOptions{
|
opts := blockingOptions{
|
||||||
queryOpts: &args.QueryOptions,
|
queryOpts: &args.QueryOptions,
|
||||||
|
|
|
@ -2905,6 +2905,73 @@ func TestJobEndpoint_LatestDeployment(t *testing.T) {
|
||||||
assert.Equal(d2.ID, resp.Deployment.ID, "latest deployment for job")
|
assert.Equal(d2.ID, resp.Deployment.ID, "latest deployment for job")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestJobEndpoint_LatestDeployment_ACL(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
assert := assert.New(t)
|
||||||
|
|
||||||
|
s1, root := testACLServer(t, nil)
|
||||||
|
defer s1.Shutdown()
|
||||||
|
codec := rpcClient(t, s1)
|
||||||
|
testutil.WaitForLeader(t, s1.RPC)
|
||||||
|
state := s1.fsm.State()
|
||||||
|
|
||||||
|
// Create a job and deployments
|
||||||
|
j := mock.Job()
|
||||||
|
d1 := mock.Deployment()
|
||||||
|
d2 := mock.Deployment()
|
||||||
|
d1.JobID = j.ID
|
||||||
|
d2.JobID = j.ID
|
||||||
|
d2.CreateIndex = d1.CreateIndex + 100
|
||||||
|
d2.ModifyIndex = d2.CreateIndex + 100
|
||||||
|
assert.Nil(state.UpsertJob(1000, j), "UpsertJob")
|
||||||
|
assert.Nil(state.UpsertDeployment(1001, d1), "UpsertDeployment")
|
||||||
|
assert.Nil(state.UpsertDeployment(1002, d2), "UpsertDeployment")
|
||||||
|
|
||||||
|
// Lookup the jobs
|
||||||
|
get := &structs.JobSpecificRequest{
|
||||||
|
JobID: j.ID,
|
||||||
|
QueryOptions: structs.QueryOptions{
|
||||||
|
Region: "global",
|
||||||
|
Namespace: j.Namespace,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
// Attempt to fetch the response without a token should fail
|
||||||
|
var resp structs.SingleDeploymentResponse
|
||||||
|
err := msgpackrpc.CallWithCodec(codec, "Job.LatestDeployment", get, &resp)
|
||||||
|
assert.NotNil(err)
|
||||||
|
assert.Contains(err.Error(), "Permission denied")
|
||||||
|
|
||||||
|
// Attempt to fetch the response with an invalid token should fail
|
||||||
|
invalidToken := CreatePolicyAndToken(t, state, 1001, "test-invalid",
|
||||||
|
NamespacePolicy(structs.DefaultNamespace, "", []string{acl.NamespaceCapabilityListJobs}))
|
||||||
|
|
||||||
|
get.SecretID = invalidToken.SecretID
|
||||||
|
var invalidResp structs.SingleDeploymentResponse
|
||||||
|
err = msgpackrpc.CallWithCodec(codec, "Job.LatestDeployment", get, &invalidResp)
|
||||||
|
assert.NotNil(err)
|
||||||
|
assert.Contains(err.Error(), "Permission denied")
|
||||||
|
|
||||||
|
// Fetching latest deployment with a valid management token should succeed
|
||||||
|
get.SecretID = root.SecretID
|
||||||
|
var validResp structs.SingleDeploymentResponse
|
||||||
|
assert.Nil(msgpackrpc.CallWithCodec(codec, "Job.LatestDeployment", get, &validResp), "RPC")
|
||||||
|
assert.EqualValues(1002, validResp.Index, "response index")
|
||||||
|
assert.NotNil(validResp.Deployment, "want a deployment")
|
||||||
|
assert.Equal(d2.ID, validResp.Deployment.ID, "latest deployment for job")
|
||||||
|
|
||||||
|
// Fetching latest deployment with a valid token should succeed
|
||||||
|
validToken := CreatePolicyAndToken(t, state, 1004, "test-valid",
|
||||||
|
NamespacePolicy(structs.DefaultNamespace, "", []string{acl.NamespaceCapabilityReadJob}))
|
||||||
|
|
||||||
|
get.SecretID = validToken.SecretID
|
||||||
|
var validResp2 structs.SingleDeploymentResponse
|
||||||
|
assert.Nil(msgpackrpc.CallWithCodec(codec, "Job.LatestDeployment", get, &validResp2), "RPC")
|
||||||
|
assert.EqualValues(1002, validResp2.Index, "response index")
|
||||||
|
assert.NotNil(validResp2.Deployment, "want a deployment")
|
||||||
|
assert.Equal(d2.ID, validResp2.Deployment.ID, "latest deployment for job")
|
||||||
|
}
|
||||||
|
|
||||||
func TestJobEndpoint_LatestDeployment_Blocking(t *testing.T) {
|
func TestJobEndpoint_LatestDeployment_Blocking(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
s1 := testServer(t, nil)
|
s1 := testServer(t, nil)
|
||||||
|
|
|
@ -924,9 +924,9 @@ The table below shows this endpoint's support for
|
||||||
[blocking queries](/api/index.html#blocking-queries) and
|
[blocking queries](/api/index.html#blocking-queries) and
|
||||||
[required ACLs](/api/index.html#acls).
|
[required ACLs](/api/index.html#acls).
|
||||||
|
|
||||||
| Blocking Queries | ACL Required |
|
| Blocking Queries | ACL Required |
|
||||||
| ---------------- | ------------ |
|
| ---------------- | -------------------------- |
|
||||||
| `YES` | `none` |
|
| `YES` | `namespace:read-job` |
|
||||||
|
|
||||||
### Parameters
|
### Parameters
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue