Skip to content

Commit

Permalink
Update README.md with how to make an MM contribution
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
rileykarson authored and modular-magician committed Jan 7, 2019
1 parent 43d40f4 commit 56cdfaa
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions google/resource_container_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -1540,6 +1540,16 @@ func expandPodSecurityPolicyConfig(configured interface{}) *containerBeta.PodSec
return nil
}

func expandDefaultMaxPodsConstraint(v interface{}) *containerBeta.MaxPodsConstraint {
if v == nil {
return nil
}

return &containerBeta.MaxPodsConstraint{
MaxPodsPerNode: int64(v.(int)),
}
}

func flattenNetworkPolicy(c *containerBeta.NetworkPolicy) []map[string]interface{} {
result := []map[string]interface{}{}
if c != nil {
Expand Down

0 comments on commit 56cdfaa

Please sign in to comment.