-
Notifications
You must be signed in to change notification settings - Fork 228
Uuid indices #98
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
Uuid indices #98
Conversation
@@ -4,7 +4,7 @@ | |||
<record> | |||
hostname ${(kubernetes_host rescue nil) || File.open('/etc/docker-hostname') { |f| f.readline }.rstrip} | |||
message ${log} | |||
version 1.0.6 | |||
version 1.1.4 |
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 see we are bumping these versions here. Are they needed for the PR or is it just an opportunity to upgrade?
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.
So this is just a marker for the data. Since we're making some bigger
changes like adding new data and changing the index formatting this was an
appropriate time to up this version.
On Mar 22, 2016 8:01 AM, "Jeff Cantrill" [email protected] wrote:
In fluentd/configs.d/filter/k8s_record_transform.conf
#98 (comment)
:@@ -4,7 +4,7 @@
hostname ${(kubernetes_host rescue nil) || File.open('/etc/docker-hostname') { |f| f.readline }.rstrip}
message ${log}
- version 1.0.6
- version 1.1.4
I see we are bumping these versions here. Are they needed for the PR or is
it just an opportunity to upgrade?—
You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub
https://github.com/openshift/origin-aggregated-logging/pull/98/files/15769affe2fb22e7a8cdb1660ed0b2fe125879b5#r56981288
Addressed suggestions made by Rich and added to the README to expand on the migration path |
[test] |
5aabc9f
to
3300bca
Compare
fi | ||
|
||
OPS_PROJECTS=("default" "openshift" "openshift-infra") | ||
PROJECTS=(oc get project -o jsonpath='{.items[*].metadata.name}') |
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 needs to be in ticks
9999d50
to
73cb6eb
Compare
[test] |
@sosiouxme @richm @jcantrill PTAL |
|
||
Be sure to delete your routes and oauth client | ||
|
||
$ oc delete route,oauthclient --selector logging-infra=support |
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 think we should really just update the code to delete the route as well. But the oauthclient, yeah, they need to do that :(
I wish I had more time to look at this today, but I probably won't. I've had time to at least glance over most of it and I don't have any qualms at this point. |
[test] |
1 similar comment
[test] |
@@ -262,7 +262,8 @@ fi | |||
|
|||
if [ "${KEEP_SUPPORT}" != true ]; then | |||
oc delete template --selector logging-infra=support | |||
oc process -f templates/support.yaml -v "OAUTH_SECRET=$(cat $dir/oauth-secret),KIBANA_HOSTNAME=${hostname},KIBANA_OPS_HOSTNAME=${ops_hostname},IMAGE_PREFIX=${image_prefix},IMAGE_VERSION=${image_version}" | oc create -f - | |||
oc process -f templates/support.yaml -v "OAUTH_SECRET=$(cat $dir/oauth-secret),KIBANA_HOSTNAME=${hostname},KIBANA_OPS_HOSTNAME=${ops_hostname}" | oc create -f - | |||
oc process -f templates/images.yaml -v "IMAGE_PREFIX=${image_prefix},IMAGE_VERSION=${image_version}" | oc create -f - |
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.
indentation
Would you please squash these into a single commit? |
3256430
to
c34b546
Compare
[test] |
[test] |
[test] |
…rove deployer process
Evaluated for aggregated logging test up to 1e627fe |
Aggregated Logging Test Results: SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test-origin-aggregated-logging/101/) |
now doing migration script testing in addition to our previous tests. PTAL |
lgtm |
I think addition of the system.admin with "superuser" privileges should be in a separate commit, based on the feedback we are getting on the lack of curator in current versions. |
@richm that just impacts OSE though right? We have those changes already in place and they are currently ON_QA for https://bugzilla.redhat.com/show_bug.cgi?id=1316216 |
@ewolinetz yes, so it's not really needed for origin. In general, it's bad to address multiple bugs/features in a single patch, because it is much harder to construct an audit trail, backport/cherry pick, etc. I guess in this case it's ok, as long as we can document what to do for OSE users. |
@richm agreed, this PR became very large very quick and that admin user change was caught up in it unfortunately. |
Probably don't need to squash everything to one commit, can keep them On Thu, Mar 31, 2016 at 5:50 PM, Eric Wolinetz [email protected]
|
assumes the changes from openshift/origin-aggregated-logging#98
aos-ci-test |
7 similar comments
aos-ci-test |
aos-ci-test |
aos-ci-test |
aos-ci-test |
aos-ci-test |
aos-ci-test |
aos-ci-test |
LGTM |
assumes the changes from openshift/origin-aggregated-logging#98
This is to address https://bugzilla.redhat.com/show_bug.cgi?id=1316216
Need to update documentation to better describe upgrade path and running of the uuid_migration script.
In the mean time comments welcome @richm @sosiouxme @jcantrill