-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: ♻️ installation Sonarqube via helm chart Bitnami
fix: 🐛 fix import ca from secret fix: 👽 gitlab token needs expiration date refactor: ⚡ avoid bad response from proxy when vault is down fix: 🐛 keycloak tlsSecret support refactor: 🎨 manage tls.type == none fix: 🎨 finish variabilize argo fix: 🐛 couldn't remove proxy vars gitlab ci fix: 🎨 can provide harbor pvc size fix: ⚡ remove fsGroup and runAsUser values from argocd fix: ⚡ set sonar pg cluster replicas to 2 fix: 🐛 fix proxy vars for harbor fix: 🐛 maven_config_file should not be configured in CI
- Loading branch information
1 parent
9353297
commit d5c0bb2
Showing
25 changed files
with
375 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
def get_debug_messages(dsc): | ||
messages = [ | ||
"--- General ---", | ||
"Please ensure you have changed Nexus admin account and save it by yourself", | ||
] | ||
if dsc['proxy']['enabled']: | ||
messages.append("--- Proxy ---") | ||
messages.append("Nexus Proxy paramaters cannot be set via API, please configure it with local admin account") | ||
messages.append("(Parameter Icon) => HTTP => Proxy Settings") | ||
return messages | ||
|
||
class FilterModule(object): | ||
def filters(self): | ||
return { | ||
'get_debug_messages': get_debug_messages, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<settings> | ||
<servers> | ||
<server> | ||
<id>mirror-dso</id> | ||
<username>$${env.NEXUS_USERNAME}</username> | ||
<password>$${env.NEXUS_PASSWORD}</password> | ||
</server> | ||
<server> | ||
<id>nexus</id> | ||
<username>$${env.NEXUS_USERNAME}</username> | ||
<password>$${env.NEXUS_PASSWORD}</password> | ||
</server> | ||
</servers> | ||
<mirrors> | ||
<mirror> | ||
<id>mirror-dso</id> | ||
<name>mirror-dso</name> | ||
<url>https://{{ nexus_domain }}/repository/$${env.PROJECT_PATH}-repository-group/</url> | ||
<mirrorOf>*</mirrorOf> | ||
</mirror> | ||
<mirror> | ||
<id>nexus</id> | ||
<name>nexus</name> | ||
<url>https://{{ nexus_domain }}/repository/maven-public/</url> | ||
<mirrorOf>*</mirrorOf> | ||
</mirror> | ||
<mirror> | ||
<id>mirror-dso</id> | ||
<name>mirror-dso</name> | ||
<url>https://{{ nexus_domain }}/repository/public/</url> | ||
<mirrorOf>*</mirrorOf> | ||
</mirror> | ||
</mirrors> | ||
<profiles> | ||
<profile> | ||
<id>generic-user</id> | ||
<repositories> | ||
<repository> | ||
<id>nexus</id> | ||
<url>https://{{ nexus_domain }}/repository/$${env.PROJECT_PATH}-repository-group/</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
</profiles> | ||
{% if dsc.proxy.enabled %} | ||
<proxies> | ||
<proxy> | ||
<id>default</id> | ||
<active>true</active> | ||
<host>{{ dsc.proxy.host }}</host> | ||
<port>{{ dsc.proxy.port }}</port> | ||
</proxy> | ||
</proxies> | ||
{% endif %} | ||
<activeProfiles> | ||
<activeProfile>generic-user</activeProfile> | ||
</activeProfiles> | ||
</settings> |
Oops, something went wrong.