-
Notifications
You must be signed in to change notification settings - Fork 32
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
Some comments on the installation in an Airgapped environment. #689
Comments
@dikpater Thank you for opening this issue to let us know about the problems you ran into and the work-arounds you needed. I am sorry you had trouble; but it sounds like you were able to get everything working in the end.
In any case, we know providing additional Grafana configuration information can be difficult. We hope to make things like this easier in the future. Thank you again for opening this issue and sharing information on the problems you ran into. Please provide the information I requested so we can make any needed improvements. Regards, |
@dikpater Sorry, I've been out of office and haven't had a chance to follow-up on this for the last couple of weeks. It would be very helpful if you could provide more information about your experience so we can address any bugs or needed tweaks to our code or documentation. I included some questions in my earlier response, but let me list them here:
Regards, |
Greg
At this moment I am not working. My wife suffers from Alzheimer’s and is
now in a nursery home. We need time to recover from the situation.
When I am back I will give the requested info.
But this will be half November.
Regards
Dik Pater
Op vr 1 nov 2024 om 22:00 schreef Greg Smith ***@***.***>
… @dikpater <https://github.com/dikpater> Sorry, I've been out of office
and haven't had a chance to follow-up on this for the last couple of weeks.
It would be very helpful if you could provide more information about your
experience so we can address any bugs or needed tweaks to our code or
documentation. I included some questions in my earlier response, but let me
list them here:
- Please describe the environment in which you were running our
deployment scripts (e.g. operating system, BASH versions, etc.)
- Please share information on the values you set for the various
air-gap related environment variables (e.g. AIRGAP_HELM_FORMAT,
AIRGAP_IMAGE_PULL_SECRET_NAME, etc.)
Regards,
Greg
-
—
Reply to this email directly, view it on GitHub
<#689 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AIKLRVDUWVNHXIUOR3BVNETZ6PTVDAVCNFSM6AAAAABP7B6HYKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDINJSGU4DEOBRHA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Hi Greg, I also had an error related to v4m_replace function definition I believe as my deployment was failing with sed error: ./deploy_logging.sh Deploying logging components to the [logging] namespace [Tue Nov 5 09:04:06 PM UTC 2024]_ sed: -e expression #1, char 44: unknown option to `s' After editing the function as per the above, deployment went through... I saw some sed errors from time to time: ...but resources were created and pods were Running, however, deployment failed. INFO Loading Content into OpenSearch _export NODE_PORT=$(kubectl get --namespace logging -o jsonpath="{.spec.ports[0].nodePort}" services v4m-osd) echo http://$NODE_IP:$NODE_PORT ,and indeed I get nothing in the browser. What am I doing wrong? Is it ok to run this on the CAS node? Please describe the environment in which you were running our deployment scripts (e.g. operating system, BASH versions, etc.): Ubuntu 22.04.1 LTS (GNU/Linux 5.15.0-43-generic x86_64) Please share information on the values you set for the various air-gap related environment variables (e.g. AIRGAP_HELM_FORMAT, AIRGAP_IMAGE_PULL_SECRET_NAME, etc.) AIRGAP_DEPLOYMENT=true We are using harbor for private registry. Thanks a lot! |
Mr. Smith.
We , my collegue Rob and I had to make some changes to get the installation working in our environment, I wanted to email , but I did not know how.
If there is a better way to inform you, please inform me.
#function v4m_replace {
if echo "$OSTYPE" | grep 'darwin' > /dev/null 2>&1; then
sed -i '' s/"$1"/"$2"/g "$3"
else
sed -i s/"$1"/"$2"/g "$3"
fi
#}
INTO
function v4m_replace {
sed -i ''s%$1%$2%g'' "$3"
}
#imagePullSecrets: IMAGE_PULL_SECRETS
into
imagePullSecrets: [name: IMAGE_PULL_SECRET]
added these lines in the user-values-prom-operator.yaml(create a kubernets secret kube-prometheus-stack-grafana-secret-mail with MAILUSER + MAILPASSWORD):
This was a struggle, with outlining..so I think to post it.
grafana:
See https://grafana.com/docs/grafana/latest/administration/configuration/#smtp
envFromSecret: kube-prometheus-stack-grafana-secret-mail"grafana.ini":
smtp:
enabled: "true"
host: mailhost:25
from_address: [email protected]
from_name: someone
skip_verify: "true"
user: $__env{MAILUSER}
password: $__env{MAILPASSWORD}
The text was updated successfully, but these errors were encountered: