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

docs: (IAC-1222) Remove CR Variables from Example Files #95

Merged
merged 2 commits into from
Nov 17, 2023
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
2 changes: 2 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## Complete Container Registry Setup
- Make updates to the `/systems/container_registry` role to fully set up a Harbor Registry for a user.
10 changes: 0 additions & 10 deletions docs/REQUIREMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,13 +367,6 @@ nfs_memory = 16384 # 16 GB
nfs_disk_size = 500 # 500 GB
nfs_ip = "10.18.0.12" # Assigned values for static IPs

# Container Registry
create_cr = false # Creation flag
cr_num_cpu = 4 # 4 CPUs
cr_memory = 8092 # 8 GB
cr_disk_size = 250 # 250 GB
cr_ip = "10.18.0.13" # Assigned values for static IPs

# PostgreSQL server
#
# Suggested server specs shown below.
Expand Down Expand Up @@ -634,9 +627,6 @@ jump_ip : ""
# NFS Server
nfs_ip : ""

# Container Registry
cr_ip : ""

# PostgreSQL Servers
```

Expand Down
3 changes: 0 additions & 3 deletions examples/bare-metal/sample-ansible-vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,3 @@ jump_ip : ""

# NFS Server
nfs_ip : ""

# Container Registry
cr_ip : ""
12 changes: 0 additions & 12 deletions examples/bare-metal/sample-inventory
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,6 @@ FIXME - ENTER YOUR NFS SERVER IP/FQDN HERE!
[nfs:children]
nfs_server

#
# Container Registry
#
[cr_server]
FIXME - ENTER YOUR CR SERVER IP/FQDN HERE!

#
# Container Registry - alias - DO NOT MODIFY
#
[cr:children]
cr_server

#
# Postgres Servers
#
Expand Down
12 changes: 0 additions & 12 deletions examples/bare-metal/sample-inventory-internal-postgres
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,6 @@ FIXME - ENTER YOUR NFS SERVER IP/FQDN HERE!
[nfs:children]
nfs_server

#
# Container Registry
#
[cr_server]
FIXME - ENTER YOUR CR SERVER IP/FQDN HERE!

#
# Container Registry - alias - DO NOT MODIFY
#
[cr:children]
cr_server

#
# All systems
#
Expand Down
7 changes: 0 additions & 7 deletions examples/vsphere/sample-terraform-dhcp.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,6 @@ nfs_memory = 16384 # 16 GB
nfs_disk_size = 500 # 500 GB
nfs_ip = "" # Assigned values for static IPs

# Container Registry
create_cr = false # Creation flag
cr_num_cpu = 4 # 4 CPUs
cr_memory = 8092 # 8 GB
cr_disk_size = 250 # 250 GB
cr_ip = "" # Assigned values for static IPs

# Postgres Servers
postgres_servers = {
default = {
Expand Down
7 changes: 0 additions & 7 deletions examples/vsphere/sample-terraform-minimal.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,6 @@ nfs_memory = 16384 # 16 GB
nfs_disk_size = 500 # 500 GB
nfs_ip = "" # Assigned values for static IPs

# Container Registry
create_cr = false # Creation flag
cr_num_cpu = 4 # 4 CPUs
cr_memory = 8092 # 8 GB
cr_disk_size = 250 # 250 GB
cr_ip = "" # Assigned values for static IPs

# Postgres Servers
postgres_servers = {
default = {
Expand Down
7 changes: 0 additions & 7 deletions examples/vsphere/sample-terraform-static-ips.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,6 @@ nfs_memory = 16384 # 16 GB
nfs_disk_size = 500 # 500 GB
nfs_ip = "" # Assigned values for static IPs

# Container Registry
create_cr = true # Creation flag
cr_num_cpu = 4 # 4 CPUs
cr_memory = 8092 # 8 GB
cr_disk_size = 250 # 250 GB
cr_ip = "" # Assigned values for static IPs

# Postgres Servers
postgres_servers = {
default = {
Expand Down
7 changes: 0 additions & 7 deletions examples/vsphere/sample-terraform-static-singlestore.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,6 @@ nfs_memory = 16384 # 16 GB
nfs_disk_size = 500 # 500 GB
nfs_ip = "" # Assigned values for static IPs

# Container Registry
create_cr = false # Creation flag
cr_num_cpu = 4 # 4 CPUs
cr_memory = 8092 # 8 GB
cr_disk_size = 250 # 250 GB
cr_ip = "" # Assigned values for static IPs

# Postgres Servers
postgres_servers = {
default = {
Expand Down
7 changes: 0 additions & 7 deletions examples/vsphere/sample-terraform-vi.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,6 @@ nfs_memory = 16384 # 16 GB
nfs_disk_size = 500 # 500 GB
nfs_ip = "" # Assigned values for static IPs

# Container Registry
create_cr = false # Creation flag
cr_num_cpu = 4 # 4 CPUs
cr_memory = 8092 # 8 GB
cr_disk_size = 250 # 250 GB
cr_ip = "" # Assigned values for static IPs

# Postgres Servers
postgres_servers = {
default = {
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ variable "nfs_disk_size" {
default = 250
}

# container registry
# container registry - TODO
variable "create_cr" {
type = bool
default = false
Expand Down