-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Globally replace http:// with https:// #11333
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I gave up to comment on everything but the most of the urls should stay http. The tests must stay and the examples in the tutorials should stay http. The xml stuff also should stay
RELEASE_NOTES.md
Outdated
@@ -948,7 +948,7 @@ | |||
- Fixed a bug where the libpod and compat Build endpoints did not accept the `application/tar` content type (instead only accepting `application/x-tar`) ([#7185](https://github.com/containers/podman/issues/7185)). | |||
- Fixed a bug where the libpod Exists endpoint would attempt to write a second header in some error conditions ([#7197](https://github.com/containers/podman/issues/7197)). | |||
- Fixed a bug where compat and libpod Network Inspect and Network Remove endpoints would return a 500 instead of 404 when the requested network was not found. | |||
- Added a versioned `_ping` endpoint (e.g. `http://localhost/v1.40/_ping`). | |||
- Added a versioned `_ping` endpoint (e.g. `https://localhost/v1.40/_ping`). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't change this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup
contrib/build_rpm.sh
Outdated
@@ -16,7 +16,7 @@ gpgcheck=0" > /etc/yum.repos.d/container_virt.repo | |||
name=paas_openshift_origin311 | |||
# Use this if you need the newest *-testing packages | |||
# baseurl=https://buildlogs.centos.org/centos/7/paas/x86_64/openshift-origin311/ | |||
baseurl=http://mirror.centos.org/centos/7/paas/x86_64/openshift-origin311/ | |||
baseurl=https://mirror.centos.org/centos/7/paas/x86_64/openshift-origin311/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think the mirror supports https
contrib/cirrus/logformatter
Outdated
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"> | ||
"https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="https://www.w3.org/1999/xhtml" lang="en-US"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should stay http
contrib/msi/podman.wxs
Outdated
@@ -1,5 +1,5 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | |||
<Wix xmlns="https://schemas.microsoft.com/wix/2006/wi"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Neither exists.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rhatdan Yeah, microsoft keeps moving them.
ed811e7
to
f94d266
Compare
@Luap99 must smaller list now. |
Still lots of test redness. |
@rhatdan Because the API is wrapped in a ssh session for remote support, the API server currently doesn't have HTTPS configured. Seemed a waste of resources to encrypt an encrypted channel. |
[NO TESTS NEEDED] Hopefully existing tests will find issues. Signed-off-by: Daniel J Walsh <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Luap99, rhatdan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/lgtm |
[NO TESTS NEEDED] Hopefully existing tests will find issues.
Signed-off-by: Daniel J Walsh [email protected]