Skip to content
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
labels: bug
assignees: ''

---
Expand Down
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/logo_community.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Add organization logo to the Omnia community list
about: Display your organization's logo on the Omnia website
title: 'Add logo to Omnia community list'
labels: 'logo'
assignees: ''

---

**Permanent link to your organization's logo:**
_Please replace this text with a permanent URL to your organization's logo. Logos will be automatically resized to fit._
10 changes: 10 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
### Issues Resolved by this Pull Request
Please be sure to associate your pull request with one or more open issues. Use the word _Fixes_ as well as a hashtag (_#_) prior to the issue number in order to automatically resolve associated issues (e.g., _Fixes #100_).

* Fixes #

### Description of the Solution
Please describe the solution provided and how it resolves the associated issues.

### Suggested Reviewers
If you wish to suggest specific reviewers for this solution, please include them in this section. Be sure to include the _@_ before the GitHub username.
2 changes: 1 addition & 1 deletion .metadata/omnia_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Omnia version 1.0.0
Omnia version devel
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

![GitHub contributors](https://img.shields.io/github/contributors-anon/dellhpc/omnia) ![GitHub forks](https://img.shields.io/github/forks/dellhpc/omnia) ![GitHub Repo stars](https://img.shields.io/github/stars/dellhpc/omnia) ![GitHub all releases](https://img.shields.io/github/downloads/dellhpc/omnia/total)

[<img src="https://img.shields.io/badge/slack-dellhpc-blue.svg?logo=slack">](https://app.slack.com/client/TH80K68HY/C018L5109PW)

#### Ansible playbook-based deployment of Slurm and Kubernetes on Dell EMC PowerEdge servers running an RPM-based Linux OS

Omnia (Latin: all or everything) is a deployment tool to turn Dell EMC PowerEdge servers with RPM-based Linux images into a functioning Slurm/Kubernetes cluster.
Expand Down
29 changes: 29 additions & 0 deletions destroy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright 2020 Dell Inc. or its subsidiaries. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---

- name: Scuttle Kubernetes cluster
hosts: all
tasks:
- name: Reset kubeadm
command: kubeadm reset -f
- name: Remove configuration directories
file:
path: "{{ item }}"
state: absent
with_items:
- /var/lib/etcd/
- /var/lib/cni/
- /run/flannel/
- /etc/cni/
3 changes: 2 additions & 1 deletion roles/common/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ common_packages:
- docker-ce-cli-20.10.2
- docker-ce-20.10.2
- openssl
- singularity

docker_packages:
- docker-ce-cli-20.10.2
Expand Down Expand Up @@ -77,4 +78,4 @@ daemon_file_dest: /etc/docker/
daemon_file_mode: 0644

hosts_file_dest: "/etc/hosts"
hosts_file_mode: "0644"
hosts_file_mode: "0644"