Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlilja committed Jan 28, 2024
1 parent 5bb1b60 commit cdf3205
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/terraform-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ jobs:
const output = `#### Terraform Cloud Plan Output
\`\`\`
Plan: ${{ steps.plan-output.outputs.add }} to add, ${{ steps.plan-output.outputs.change }} to change, ${{ steps.plan-output.outputs.destroy }} to destroy.
Plan: ${{ steps.plan-output.outputs.add }} to add,
${{ steps.plan-output.outputs.change }} to change,
${{ steps.plan-output.outputs.destroy }} to destroy.
\`\`\`
`;
Expand Down
2 changes: 1 addition & 1 deletion ansible/minikube/ansible/harden_ssh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# Taken from https://github.com/geerlingguy/ansible-for-devops/blob/master/security/main.yml
- name: Update SSH configuration to be more secure.
lineinfile:
ansible.builtin.lineinfile:
dest: /etc/ssh/sshd_config
regexp: "{{ item.regexp }}"
line: "{{ item.line }}"
Expand Down
6 changes: 3 additions & 3 deletions ansible/minikube/ansible/install_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
tasks:

- name: Install docker plugins core
dnf:
ansible.builtin.dnf:
name: dnf-plugins-core
state: present

- name: Add docker repository
command: dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
ansible.builtin.command: dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo

- name: Install docker engine, containerd, and docker compose
dnf:
ansible.builtin.dnf:
name:
- docker-ce
- docker-ce-cli
Expand Down
2 changes: 1 addition & 1 deletion ansible/minikube/bootstrapping/bootstrap.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---


- name: playbook
- name: Create and authorize user
hosts: all
become: true
tasks:
Expand Down
8 changes: 4 additions & 4 deletions k8s/apps/webserver/nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ spec:
app: nginxdeployment
spec:
containers:
- image: ghcr.io/home-assistant/home-assistant:stable
name: nginxdeployment
ports:
- containerPort: 8123
- image: ghcr.io/home-assistant/home-assistant:stable
name: nginxdeployment
ports:
- containerPort: 8123
---
apiVersion: v1
kind: Service
Expand Down

0 comments on commit cdf3205

Please sign in to comment.