Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2004] Remove NET_BIND_SERVICE container capability #120

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: Lint

Check warning on line 1 in .github/workflows/lint.yaml

View workflow job for this annotation

GitHub Actions / YAML

1:1 [document-start] missing document start "---"

on: pull_request

Check warning on line 3 in .github/workflows/lint.yaml

View workflow job for this annotation

GitHub Actions / YAML

3:1 [truthy] truthy value should be one of [false, true]

jobs:
terraform-format:
name: Terraform Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hashicorp/setup-terraform@v2
- uses: actions/checkout@v4
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: "1.4.5"
terraform_version: "1.9.5"
- name: Check formatting
run: terraform fmt -recursive -check

terraform-docs:
name: Terraform Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: terraform-docs/gh-actions@main
- uses: actions/checkout@v4
- uses: terraform-docs/gh-actions@v1.2.2
with:
find-dir: .
fail-on-diff: true
Expand All @@ -34,6 +34,6 @@
name: YAML
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check formatting
uses: karancode/[email protected]
1 change: 0 additions & 1 deletion aks/application/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ resource "kubernetes_deployment" "main" {

capabilities {
drop = ["ALL"]
add = ["NET_BIND_SERVICE"]
}
}
}
Expand Down
Loading