Skip to content

Commit

Permalink
fix(jenkins install): add None to jenkins installation model
Browse files Browse the repository at this point in the history
  • Loading branch information
abolfazl8131 committed Dec 15, 2024
1 parent 1818b98 commit 4ea75c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 50 deletions.
1 change: 1 addition & 0 deletions app/media/MyAnsible/group_vars/all
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# General
install_ansible_modules: "true"
disable_transparent_huge_pages: "true"
Expand Down
2 changes: 1 addition & 1 deletion app/models/jenkins.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class JenkinsInstallation(BaseModel):

os: str = 'Ubuntu'
os: str | None = 'Ubuntu'

environment:str = 'Linux'

Expand Down
50 changes: 1 addition & 49 deletions crawl/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,55 +4,7 @@

# List of URLs to crawl
urls = [
"https://www.browserstack.com/guide/devops-challenges-and-its-solutions",

"https://sematext.com/blog/devops-challenges/",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingBucket.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/common-bucket-patterns.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/VirtualHosting.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/create-bucket-overview.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/mountpoint-installation.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/mountpoint-usage.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-storagebrowser.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/installing-storagebrowser.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/setup-storagebrowser.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3config-storagebrowser.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/troubleshooting-storagebrowser.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-restrictions.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-schema.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-permissions.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-optimizing-query-performance.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-example-queries.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-join-custom-metadata.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/HLuploadDirDotNet.html",

"https://docs.aws.amazon.com/AmazonS3/latest/userguide/track-mpu.html"

]

# Directory to save the files
Expand Down

0 comments on commit 4ea75c6

Please sign in to comment.